Skip to content

Commit

Permalink
Update dbTest.c
Browse files Browse the repository at this point in the history
Fix MAX define.
  • Loading branch information
krmpotic committed Sep 9, 2019
1 parent 704e625 commit 2461dc3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ioc/db/dbTest.c
Expand Up @@ -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 */
Expand Down

0 comments on commit 2461dc3

Please sign in to comment.