summaryrefslogtreecommitdiff
path: root/src/common/db.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/db.cpp')
-rw-r--r--src/common/db.cpp4
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)