Update dbTest.c

Fix MAX define.
This commit is contained in:
krmpotic
2019-09-09 11:42:04 +02:00
committed by GitHub
parent 704e6251e6
commit 2461dc3574
+1 -1
View File
@@ -54,7 +54,7 @@ typedef struct msgBuff TAB_BUFFER;
# 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
/* Local Routines */