Date: Thu, 12 Dec 2013 08:48:46 +0000 (UTC) From: David Chisnall <theraven@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r259249 - head/usr.bin/dtc Message-ID: <201312120848.rBC8mkVB013264@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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()) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312120848.rBC8mkVB013264>