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())
        {
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to