diff options
author | Daniel Stenberg <daniel@haxx.se> | 2002-05-03 12:06:04 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2002-05-03 12:06:04 +0000 |
commit | 39028f1bd49242468126aa7d93e498e1b40952b4 (patch) | |
tree | 4c5022346e3e0a44eb522e0e43b14b1d85034957 | |
parent | 71f4c0566537c087660dcf59044299d881d332e9 (diff) |
make sure our own printf() clones are used
-rw-r--r-- | lib/progress.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/progress.c b/lib/progress.c index b3052e425..881ab0549 100644 --- a/lib/progress.c +++ b/lib/progress.c @@ -45,6 +45,10 @@ #include "progress.h" +#define _MPRINTF_REPLACE /* use our functions only */ +#include <curl/mprintf.h> + + static void time2str(char *r, int t) { int h = (t/3600); |