app/color_cmds.c

1999-10-04 Olof S Kylander <olof@gimp.org>

        * app/color_cmds.c

        fixed bug report 2306 and 2208
This commit is contained in:
Olof S Kylander 1999-10-04 01:49:07 +00:00 committed by Olof S Kylander/GIMP
parent cdc3f6e779
commit 69b11b7343
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
1999-10-04 Olof S Kylander <olof@gimp.org>
* app/color_cmds.c
fixed bug report 2306 and 2208
1999-10-04 Sven Neumann <sven@gimp.org>
* app/tool_options.c: backed out a change from last weekend that was

View File

@ -658,7 +658,7 @@ curves_explicit_invoker (Argument *args)
GimpDrawable *drawable;
gint32 channel;
gint32 num_bytes;
gint8 *curve;
guint8 *curve;
CurvesDialog cd;
int x1, y1, x2, y2;
int i, j;
@ -676,7 +676,7 @@ curves_explicit_invoker (Argument *args)
if (num_bytes <= 0)
success = FALSE;
curve = (gint8 *) args[3].value.pdb_pointer;
curve = (guint8 *) args[3].value.pdb_pointer;
if (success)
{