From 7476e986d1081c60de87b0733996744e6540f49d Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Fri, 27 Mar 2009 18:02:21 +0100 Subject: [PATCH] f=f: Fix debug messages --- rfc3676.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rfc3676.c b/rfc3676.c index 8bcef2bc7..872dbbffb 100644 --- a/rfc3676.c +++ b/rfc3676.c @@ -101,16 +101,16 @@ static void print_flowed_line (char *line, STATE *s, int ql, size_t *sofar, int width = quote_width (s, ql); - dprint (4, (debugfile, "f-f: line [%s], width = %ld\n", NONULL(line), (long)width)); + dprint (4, (debugfile, "f=f: line [%s], width = %ld\n", NONULL(line), (long)width)); for (p = (char *)line, words = 0; (p = strsep (&line, " ")) != NULL ; ) { w = mutt_strwidth (NONULL(p)); - dprint (4, (debugfile, "f-f: word [%s], width = %ld, line = %ld\n", NONULL(p), (long)w, (long)*sofar)); + dprint (4, (debugfile, "f=f: word [%s], width = %ld, line = %ld\n", NONULL(p), (long)w, (long)*sofar)); if (w + 1 + (*sofar) > width) { /* line would be too long, flush */ - dprint (4, (debugfile, "f-f: width: %ld\n", (long)*sofar)); + dprint (4, (debugfile, "f=f: width: %ld\n", (long)*sofar)); state_puts (" \n", s); *sofar = 0; } -- 2.40.0