From: Colin Walters Date: Thu, 21 Jun 2012 16:12:33 +0000 (-0400) Subject: gresourcefile.c: Remove stray semicolon X-Git-Tag: 2.33.3~18 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ccd30d6816564db42b2ce13afc6bdf32274206e8;p=platform%2Fupstream%2Fglib.git gresourcefile.c: Remove stray semicolon --- diff --git a/gio/gresourcefile.c b/gio/gresourcefile.c index 82fe32f..3d5a952 100644 --- a/gio/gresourcefile.c +++ b/gio/gresourcefile.c @@ -830,7 +830,7 @@ g_resource_file_input_stream_tell (GFileInputStream *stream) { GResourceFileInputStream *file = G_RESOURCE_FILE_INPUT_STREAM (stream);; - if (!G_IS_SEEKABLE (file->stream)); + if (!G_IS_SEEKABLE (file->stream)) return 0; return g_seekable_tell (G_SEEKABLE (file->stream));