diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-05 22:03:00 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-08 23:46:50 +0900 |
commit | 653ebe7bf09d3f84dde263ac8fdecddb6239c36f (patch) | |
tree | 21656763ee9384a937de3139a9f5a40d3c984425 /ddb | |
parent | d329a3411f0521caf03eeb8e3d6d8edb3696b9f9 (diff) |
ddb/db_output.c: remove call to nonexistent db_printf_enter()
* ddb/db_output.c [db_printf_enter] (db_printf_enter): Remove call to nonexistent function.
Diffstat (limited to 'ddb')
-rw-r--r-- | ddb/db_output.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ddb/db_output.c b/ddb/db_output.c index c08db6f..268de69 100644 --- a/ddb/db_output.c +++ b/ddb/db_output.c @@ -210,9 +210,6 @@ db_printf(const char *fmt, ...) { va_list listp; -#ifdef db_printf_enter - db_printf_enter(); /* optional multiP serialization */ -#endif va_start(listp, fmt); _doprnt(fmt, listp, db_id_putc, db_radix, 0); va_end(listp); |