summaryrefslogtreecommitdiff
path: root/src/cairo-output-stream.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2006-07-28 16:59:54 -0700
committerCarl Worth <cworth@cworth.org>2006-07-28 22:50:06 -0700
commiteb9caf083353f3430f786da717b6c56b13f82ecb (patch)
treeb82d3eb24a81f234286e8715fb8c68bebc939aad /src/cairo-output-stream.c
parent5e0f46cdebb5e086b344cc09b4537982a07e45cd (diff)
downloadcairo-eb9caf083353f3430f786da717b6c56b13f82ecb.tar.gz
Add -Wsign-compare compiler flag and fix all warnings
Diffstat (limited to 'src/cairo-output-stream.c')
-rw-r--r--src/cairo-output-stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-output-stream.c b/src/cairo-output-stream.c
index 96ff8ce0c..351c6a4d9 100644
--- a/src/cairo-output-stream.c
+++ b/src/cairo-output-stream.c
@@ -184,7 +184,7 @@ _cairo_output_stream_write_hex_string (cairo_output_stream_t *stream,
{
const char hex_chars[] = "0123456789abcdef";
char buffer[2];
- int i, column;
+ unsigned int i, column;
if (stream->status)
return;