X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/1709795fee167cc2d2d423df0161e7963376b910..417d19722e3535ab06bfb59d8e570f5e053489eb:/misc.h diff --git a/misc.h b/misc.h index e4e70b1f..48054745 100644 --- a/misc.h +++ b/misc.h @@ -62,7 +62,7 @@ void debug_memdump(void *buf, int len, int L); #define min(x,y) ( (x) < (y) ? (x) : (y) ) #endif #ifndef max -#define max(x,y) ( (x) < (y) ? (x) : (y) ) +#define max(x,y) ( (x) > (y) ? (x) : (y) ) #endif #endif