mirror of https://github.com/GNOME/gimp.git
Small changes to satisfy the native SGI IRIX-6.4 compiler. There are still
lots of warnings, but it seems to compile out of the box now (using GNU make). --Sven
This commit is contained in:
parent
a5c103b53b
commit
8dec2758b7
|
@ -1,3 +1,9 @@
|
|||
Fri Mar 27 14:33:42 MET 1998 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* plugins/dbbrowser/dbbrowser_utils.c
|
||||
* plugins/sparkle/sparkle.c: small changes to make it compile
|
||||
on irix-6.4 with the native compiler.
|
||||
|
||||
Fri Mar 27 00:19:38 PST 1998 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* Made 0.99.23 release
|
||||
|
|
|
@ -713,7 +713,11 @@ rpnt (GDrawable *drawable,
|
|||
guchar *pixel;
|
||||
guchar *guc_tmp;
|
||||
gdouble *gd_tmp;
|
||||
gint oldrow = row - 1, oldcol = col - 1;
|
||||
gint *oldrow;
|
||||
gint *oldcol;
|
||||
|
||||
oldrow = row - 1;
|
||||
oldcol = col - 1;
|
||||
|
||||
x = (int) (xr); /* integer coord. to upper left of real point */
|
||||
y = (int) (yr);
|
||||
|
|
|
@ -713,7 +713,11 @@ rpnt (GDrawable *drawable,
|
|||
guchar *pixel;
|
||||
guchar *guc_tmp;
|
||||
gdouble *gd_tmp;
|
||||
gint oldrow = row - 1, oldcol = col - 1;
|
||||
gint *oldrow;
|
||||
gint *oldcol;
|
||||
|
||||
oldrow = row - 1;
|
||||
oldcol = col - 1;
|
||||
|
||||
x = (int) (xr); /* integer coord. to upper left of real point */
|
||||
y = (int) (yr);
|
||||
|
|
Loading…
Reference in New Issue