diff options
-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 */ |