From 7dded29a632d26b8ed2c279004dd5fe39014de27 Mon Sep 17 00:00:00 2001 From: bertrand Date: Mon, 24 Jan 2000 22:29:49 +0000 Subject: converted all gint64 variables into guint32. 2000-01-24 bertrand * camel/camel-stream-fs.[ch]: converted all gint64 variables into guint32. * camel/camel-stream-fs.c (_read): fix stupid bug. (_write): ditto. * camel/camel-exception.c (camel_exception_new): don't forget to clean the exception when creating it. svn path=/trunk/; revision=1621 --- tests/test10.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests') diff --git a/tests/test10.c b/tests/test10.c index fc8cc326cf..a8835861d6 100644 --- a/tests/test10.c +++ b/tests/test10.c @@ -86,14 +86,14 @@ main (int argc, char**argv) folder = camel_store_get_folder (store, "Inbox", ex); if (camel_exception_get_id (ex)) { - printf ("Exception caught in camel_store_get_folder" + printf ("Exception caught in camel_store_get_folder\n" "Full description : %s\n", camel_exception_get_description (ex)); return -1; } camel_folder_open (folder, FOLDER_OPEN_RW, ex); if (camel_exception_get_id (ex)) { - printf ("Exception caught when trying to open the folder" + printf ("Exception caught when trying to open the folder\n" "Full description : %s\n", camel_exception_get_description (ex)); return -1; } @@ -101,7 +101,7 @@ main (int argc, char**argv) message = create_sample_mime_message (); camel_folder_append_message (folder, message, ex); if (camel_exception_get_id (ex)) { - printf ("Exception caught when trying to append a message to the folder" + printf ("Exception caught when trying to append a message to the folder\n" "Full description : %s\n", camel_exception_get_description (ex)); return -1; } -- cgit v1.2.3