diff options
author | Dan Winship <danw@src.gnome.org> | 2000-04-01 12:16:39 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2000-04-01 12:16:39 +0800 |
commit | 74b6039c5287b433038a5ece91874f19a862a184 (patch) | |
tree | a4686a56eb5ce72155065a6ea52182a2ccf04225 /camel/gmime-content-field.c | |
parent | cd8753df965d89d32d66e0ed4ba28311ac1f22eb (diff) | |
download | gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.gz gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.bz2 gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.lz gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.xz gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.tar.zst gsoc2013-evolution-74b6039c5287b433038a5ece91874f19a862a184.zip |
remove debugging printf()s that no longer seem useful
svn path=/trunk/; revision=2274
Diffstat (limited to 'camel/gmime-content-field.c')
-rw-r--r-- | camel/gmime-content-field.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/camel/gmime-content-field.c b/camel/gmime-content-field.c index 07924c1915..7aa4885511 100644 --- a/camel/gmime-content-field.c +++ b/camel/gmime-content-field.c @@ -370,7 +370,6 @@ gmime_content_field_construct_from_string (GMimeContentField *content_field, con if (i != first) param_value = g_strndup (string+first, i-first); else param_value = g_strdup (""); CAMEL_LOG_TRACE ( "GMimeContentField::construct_from_string, Found mime parameter \"%s\"=\"%s\"\n", param_name, param_value); - printf( "GMimeContentField::construct_from_string, Found mime parameter \"%s\"=\"%s\"\n", param_name, param_value); string_trim (param_value, " \t\"", STRING_TRIM_STRIP_TRAILING | STRING_TRIM_STRIP_LEADING); gmime_content_field_set_parameter (content_field, param_name, param_value); g_free (param_name); |