gresourcefile.c: Remove stray semicolon
authorColin Walters <walters@verbum.org>
Thu, 21 Jun 2012 16:12:33 +0000 (12:12 -0400)
committerColin Walters <walters@verbum.org>
Fri, 22 Jun 2012 14:32:25 +0000 (10:32 -0400)
gio/gresourcefile.c

index 82fe32f..3d5a952 100644 (file)
@@ -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));