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:
Sven Neumann 2003-05-20 15:41:39 +00:00 committed by Sven Neumann
parent 966fb5595f
commit c90a88fd9d
2 changed files with 10 additions and 1 deletions

View File

@ -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

View File

@ -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 */