diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2012-12-27 21:23:46 -0800 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2013-01-07 15:31:38 -0800 |
commit | c080e504e4d74027b985b1ed675c172c083cea76 (patch) | |
tree | ac084d16d9d40c0a0c950b66eb62a0e16795d486 /src/common/db.cpp | |
parent | ae30173d71d3bfc8514dbe70b6c90c9a3324b8fc (diff) | |
download | tmwa-c080e504e4d74027b985b1ed675c172c083cea76.tar.gz tmwa-c080e504e4d74027b985b1ed675c172c083cea76.tar.bz2 tmwa-c080e504e4d74027b985b1ed675c172c083cea76.tar.xz tmwa-c080e504e4d74027b985b1ed675c172c083cea76.zip |
Use cxxstdio
Diffstat (limited to 'src/common/db.cpp')
-rw-r--r-- | src/common/db.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/db.cpp b/src/common/db.cpp index 8780138..06f85bc 100644 --- a/src/common/db.cpp +++ b/src/common/db.cpp @@ -414,12 +414,12 @@ void db_walk_tree(bool dealloc, struct dbn* p, db_func_t func) return; if (!dealloc && !func) { - fprintf(stderr, "DEBUG: Must walk tree to either free or invoke a function.\n"); + FPRINTF(stderr, "DEBUG: Must walk tree to either free or invoke a function.\n"); abort(); } if (p->parent) { - fprintf(stderr, "DEBUG: Root nodes must not have parents\n"); + FPRINTF(stderr, "DEBUG: Root nodes must not have parents\n"); abort(); } while (true) |