diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-14 10:51:11 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-14 10:51:11 +0800 |
commit | 6b12be62e100934ccae65f197c8c7eef2c8ae3a4 (patch) | |
tree | 1323080c8665ed0d3024545345cba825708de76d /mail | |
parent | 6ee3d89d0b3707cc6f48b1e0c9099623fd034c92 (diff) | |
download | gsoc2013-evolution-6b12be62e100934ccae65f197c8c7eef2c8ae3a4.tar.gz gsoc2013-evolution-6b12be62e100934ccae65f197c8c7eef2c8ae3a4.tar.zst gsoc2013-evolution-6b12be62e100934ccae65f197c8c7eef2c8ae3a4.zip |
Fix coding style.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/em-inline-filter.c | 8 | ||||
-rw-r--r-- | mail/em-stripsig-filter.c | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mail/em-inline-filter.c b/mail/em-inline-filter.c index 19e3f2671f..bf18aab0f7 100644 --- a/mail/em-inline-filter.c +++ b/mail/em-inline-filter.c @@ -339,9 +339,9 @@ emif_scan(CamelMimeFilter *f, gchar *in, gsize len, gint final) static void emif_filter(CamelMimeFilter *f, const gchar *in, gsize len, gsize prespace, gchar **out, gsize *outlen, gsize *outprespace) { - emif_scan(f, (gchar*)in, len, FALSE); + emif_scan(f, (gchar *)in, len, FALSE); - *out = (gchar*)in; + *out = (gchar *)in; *outlen = len; *outprespace = prespace; } @@ -349,9 +349,9 @@ emif_filter(CamelMimeFilter *f, const gchar *in, gsize len, gsize prespace, gcha static void emif_complete(CamelMimeFilter *f, const gchar *in, gsize len, gsize prespace, gchar **out, gsize *outlen, gsize *outprespace) { - emif_scan(f, (gchar*)in, len, TRUE); + emif_scan(f, (gchar *)in, len, TRUE); - *out = (gchar*)in; + *out = (gchar *)in; *outlen = len; *outprespace = prespace; } diff --git a/mail/em-stripsig-filter.c b/mail/em-stripsig-filter.c index f4097a1b3d..39e6d02dad 100644 --- a/mail/em-stripsig-filter.c +++ b/mail/em-stripsig-filter.c @@ -126,7 +126,7 @@ strip_signature (CamelMimeFilter *filter, const gchar *in, gsize len, gsize pres else if (!start) inptr = inend; - *out = (gchar*)in; + *out = (gchar *)in; *outlen = inptr - in; *outprespace = prespace; } |