fixed a harmless compiler warning.
2003-05-20 Sven Neumann <sven@gimp.org> * app/core/gimpimage-rotate.c (gimp_image_rotate): fixed a harmless compiler warning.
This commit is contained in:
parent
966fb5595f
commit
c90a88fd9d
@ -1,3 +1,8 @@
|
||||
2003-05-20 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimpimage-rotate.c (gimp_image_rotate): fixed a harmless
|
||||
compiler warning.
|
||||
|
||||
2003-05-20 Michael Natterer <mitch@gimp.org>
|
||||
|
||||
* app/core/gimpchannel.c (gimp_channel_rotate): don't default to
|
||||
|
@ -56,7 +56,7 @@ gimp_image_rotate (GimpImage *gimage,
|
||||
gint progress_current = 1;
|
||||
gint new_image_width;
|
||||
gint new_image_height;
|
||||
gboolean size_changed = FALSE;
|
||||
gboolean size_changed;
|
||||
|
||||
g_return_if_fail (GIMP_IS_IMAGE (gimage));
|
||||
|
||||
@ -93,6 +93,10 @@ gimp_image_rotate (GimpImage *gimage,
|
||||
new_image_height = gimage->height;
|
||||
size_changed = FALSE;
|
||||
break;
|
||||
|
||||
default:
|
||||
g_assert_not_reached ();
|
||||
return;
|
||||
}
|
||||
|
||||
/* Rotate all channels */
|
||||
|
Loading…
Reference in New Issue
Block a user