diff options
Diffstat (limited to 'usr.bin/dtc')
-rw-r--r-- | usr.bin/dtc/fdt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/dtc/fdt.cc b/usr.bin/dtc/fdt.cc index eb944fc..7810c0d 100644 --- a/usr.bin/dtc/fdt.cc +++ b/usr.bin/dtc/fdt.cc @@ -1190,7 +1190,7 @@ device_tree::write_dts(int fd) for (std::vector<reservation>::iterator i=reservations.begin(), e=reservations.end() ; i!=e ; ++i) { - fprintf(stderr, " %" PRIx64 " %" PRIx64, i->first, i->second); + fprintf(file, " %" PRIx64 " %" PRIx64, i->first, i->second); } fputs(";\n\n", file); } |