diff options
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index c5616ca05c..04fd6c119b 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -3149,9 +3149,9 @@ header_fold(const char *in, int headerlen) } else { len = strlen(inptr); } - printf("next word '%.*s'\n", len, inptr); + d(printf("next word '%.*s'\n", len, inptr)); if (outlen + len > CAMEL_FOLD_SIZE) { - printf("outlen = %d wordlen = %d\n", outlen, len); + d(printf("outlen = %d wordlen = %d\n", outlen, len)); g_string_append(out, "\n\t"); outlen = 1; /* check for very long words, just cut them up */ |