svn commit: r259249 - head/usr.bin/dtc
David Chisnall
theraven at FreeBSD.org
Thu Dec 12 08:48:46 UTC 2013
Author: theraven
Date: Thu Dec 12 08:48:45 2013
New Revision: 259249
URL: http://svnweb.freebsd.org/changeset/base/259249
Log:
Fix the version string in dts emission.
Reported by: Patrick Wildt
MFC after: 1 week
Modified:
head/usr.bin/dtc/fdt.cc
Modified: head/usr.bin/dtc/fdt.cc
==============================================================================
--- head/usr.bin/dtc/fdt.cc Thu Dec 12 08:34:51 2013 (r259248)
+++ head/usr.bin/dtc/fdt.cc Thu Dec 12 08:48:45 2013 (r259249)
@@ -1181,7 +1181,7 @@ void
device_tree::write_dts(int fd)
{
FILE *file = fdopen(fd, "w");
- fputs("/dtc-v1/;\n\n", file);
+ fputs("/dts-v1/;\n\n", file);
if (!reservations.empty())
{
More information about the svn-src-all
mailing list