mirror of https://github.com/GNOME/gimp.git
added missing brackets in macros.
2005-06-13 Sven Neumann <sven@gimp.org> * app/core/gimp-transform-resize.c: added missing brackets in macros.
This commit is contained in:
parent
c37f22e644
commit
697142c2f2
|
@ -1,3 +1,7 @@
|
|||
2005-06-13 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimp-transform-resize.c: added missing brackets in macros.
|
||||
|
||||
2005-06-11 Manish Singh <yosh@gimp.org>
|
||||
|
||||
* configure.in: if any of the pygimp dependencies aren't fulfilled,
|
||||
|
|
|
@ -37,8 +37,8 @@
|
|||
#error "no FINITE() implementation available?!"
|
||||
#endif
|
||||
|
||||
#define MIN4(a,b,c,d) MIN(MIN(a,b),MIN(c,d))
|
||||
#define MAX4(a,b,c,d) MAX(MAX(a,b),MAX(c,d))
|
||||
#define MIN4(a,b,c,d) MIN(MIN((a),(b)),MIN((c),(d)))
|
||||
#define MAX4(a,b,c,d) MAX(MAX((a),(b)),MAX((c),(d)))
|
||||
|
||||
|
||||
typedef struct
|
||||
|
|
Loading…
Reference in New Issue