diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-29 15:00:17 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2013-08-29 15:00:17 +0100 |
commit | dc1196f1064a4bc19a8880c04e4c79a9cef54cc5 (patch) | |
tree | 2f2d90c653202acb67071ddf86723af8727d8296 /src/printf.h | |
parent | ecfc58fc43afcd36399f8d1fe5d8512b8a59598e (diff) | |
download | rspamd-dc1196f1064a4bc19a8880c04e4c79a9cef54cc5.tar.gz rspamd-dc1196f1064a4bc19a8880c04e4c79a9cef54cc5.zip |
Allow to print booleans with %b
Diffstat (limited to 'src/printf.h')
-rw-r--r-- | src/printf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/printf.h b/src/printf.h index ff0422d17..9d3921c3a 100644 --- a/src/printf.h +++ b/src/printf.h @@ -40,6 +40,7 @@ * %[0][width][.width]F long double * %[0][width][.width]g double * %[0][width][.width]G long double + * %b boolean (true or false) * %P pid_t * %r rlim_t * %p void * |