X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/d37c2d8198de28cc4076c560dff9a94f8452fe7c..7ffb2b52fdfb1347695c8ce597fd31eb00cc449d:/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