function doesn't return a value, so don't use g_return_val_if_fail()

Fri Jul  9 15:38:06 2004  Manish Singh  <yosh@gimp.org>

        * gdk-pixbuf-io.c (gdk_pixbuf_format_set_disabled): function doesn't
        return a value, so don't use g_return_val_if_fail()

        * gdk-pixbuf-scale.c (gdk_pixbuf_rotate_simple): initialize dest in
        the can't happen case, to quiet gcc.

        * io-tiff.c (tifflibversion): enclose in #if TIFFLIB_VERSION >=
        20031226.
This commit is contained in:
Manish Singh 2004-07-09 22:40:37 +00:00 committed by Manish Singh
parent 8889f2b45d
commit 2633a03012
4 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,14 @@
Fri Jul 9 15:38:06 2004 Manish Singh <yosh@gimp.org>
* gdk-pixbuf-io.c (gdk_pixbuf_format_set_disabled): function doesn't
return a value, so don't use g_return_val_if_fail()
* gdk-pixbuf-scale.c (gdk_pixbuf_rotate_simple): initialize dest in
the can't happen case, to quiet gcc.
* io-tiff.c (tifflibversion): enclose in #if TIFFLIB_VERSION >=
20031226.
Wed Jul 7 23:53:58 2004 Matthias Clasen <maclas@gmx.de>
* gdk-pixbuf-io.h:

View File

@ -1886,7 +1886,7 @@ void
gdk_pixbuf_format_set_disabled (GdkPixbufFormat *format,
gboolean disabled)
{
g_return_val_if_fail (format != NULL, FALSE);
g_return_if_fail (format != NULL);
format->disabled = disabled != FALSE;
}

View File

@ -392,6 +392,7 @@ gdk_pixbuf_rotate_simple (const GdkPixbuf *src,
}
break;
default:
dest = NULL;
g_warning ("gdk_pixbuf_rotate_simple() can only rotate "
"by multiples of 90 degrees");
g_assert_not_reached ();

View File

@ -145,6 +145,7 @@ static void free_buffer (guchar *pixels, gpointer data)
g_free (pixels);
}
#if TIFFLIB_VERSION >= 20031226
static gboolean tifflibversion (int *major, int *minor, int *revision)
{
if (sscanf (TIFFGetVersion(),
@ -154,6 +155,7 @@ static gboolean tifflibversion (int *major, int *minor, int *revision)
return TRUE;
}
#endif
static GdkPixbuf *
tiff_image_parse (TIFF *tiff, TiffContext *context, GError **error)