diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-01-23 02:00:55 +0800 |
---|---|---|
committer | Jeremy Katz <katzj@src.gnome.org> | 2004-01-23 02:00:55 +0800 |
commit | c646e6e511e48a3a6591198a95e65b64cf7efd2f (patch) | |
tree | 40ed9fbecd3bfc744cfbb1164e23c3e209e53b51 | |
parent | 4f0fbfb4a21040eebd29daafc225529d997308b4 (diff) | |
download | gsoc2013-evolution-c646e6e511e48a3a6591198a95e65b64cf7efd2f.tar.gz gsoc2013-evolution-c646e6e511e48a3a6591198a95e65b64cf7efd2f.tar.zst gsoc2013-evolution-c646e6e511e48a3a6591198a95e65b64cf7efd2f.zip |
Fix prototype to be consistent.
2004-01-22 Jeremy Katz <katzj@redhat.com>
* camel-mime-part.c: Fix prototype to be consistent.
svn path=/trunk/; revision=24367
-rw-r--r-- | camel/ChangeLog | 4 | ||||
-rw-r--r-- | camel/camel-mime-part.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog index c864e4cadf..c2268338af 100644 --- a/camel/ChangeLog +++ b/camel/ChangeLog @@ -1,3 +1,7 @@ +2004-01-22 Jeremy Katz <katzj@redhat.com> + + * camel-mime-part.c: Fix prototype to be consistent. + 2004-01-21 Not Zed <NotZed@Ximian.com> ** See bug #52996. diff --git a/camel/camel-mime-part.c b/camel/camel-mime-part.c index 3a57a51970..e48ea4adc9 100644 --- a/camel/camel-mime-part.c +++ b/camel/camel-mime-part.c @@ -94,9 +94,9 @@ static int construct_from_parser (CamelMimePart *mime_part static void set_disposition (CamelMimePart *mime_part, const char *disposition); /* format output of headers */ -static int write_references(CamelStream *stream, struct _camel_header_raw *h); +static ssize_t write_references(CamelStream *stream, struct _camel_header_raw *h); /*static int write_fold(CamelStream *stream, struct _camel_header_raw *h);*/ -static int write_raw(CamelStream *stream, struct _camel_header_raw *h); +static ssize_t write_raw(CamelStream *stream, struct _camel_header_raw *h); /* loads in a hash table the set of header names we */ |