Don't cast an int to a ssize_t.

2000-11-14  Jeffrey Stedfast  <fejj@helixcode.com>

	* camel-stream.c (camel_stream_printf): Don't cast an int to a
	ssize_t.

svn path=/trunk/; revision=6574
This commit is contained in:
Jeffrey Stedfast
2000-11-14 21:29:21 +00:00
committed by Jeffrey Stedfast
parent 07cada4dbc
commit d266df61cc
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
2000-11-14 Jeffrey Stedfast <fejj@helixcode.com>
* camel-stream.c (camel_stream_printf): Don't cast an int to a
ssize_t.
2000-11-10 Dan Winship <danw@helixcode.com>
* providers/mbox/camel-mbox-summary.c
+1 -1
View File
@@ -212,7 +212,7 @@ camel_stream_printf (CamelStream *stream, const char *fmt, ... )
{
va_list args;
char *string;
int ret;
ssize_t ret;
g_return_val_if_fail (CAMEL_IS_STREAM (stream), -1);