Skip to content

Commit

Permalink
fixed unused variable warning Tokutek/mongo#869 Tokutek/ft-index#122
Browse files Browse the repository at this point in the history
I forgot how commas work
  • Loading branch information
leifwalsh committed Dec 24, 2013
1 parent fc545a1 commit 3e651ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backup/backup_helgrind.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include <valgrind/helgrind.h>
#define TOKUBACKUP_VALGRIND_HG_DISABLE_CHECKING(x, y) VALGRIND_HG_DISABLE_CHECKING(x, y)
#else
#define TOKUBACKUP_VALGRIND_HG_DISABLE_CHECKING(x, y) ((void) (x, y))
#define TOKUBACKUP_VALGRIND_HG_DISABLE_CHECKING(x, y) ((void) x, (void) y)
#endif

#endif /* BACKUP_HELGPIND_H */

0 comments on commit 3e651ef

Please sign in to comment.