about summary refs log tree commit diff stats
path: root/src/common.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.h')
-rw-r--r--src/common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h
index 8e5f627..8ea5b48 100644
--- a/src/common.h
+++ b/src/common.h
@@ -14,7 +14,7 @@
       if ((VALUE)) break;                                                    \
       fprintf(stderr, "Assertion failure: " #MESSAGE "\n");                  \
       abort();                                                               \
-    } while (0);
+    } while (0)
 
 #define CHECK_EQ(A, B, MESSAGE) CHECK((A) == (B), MESSAGE)
 #define CHECK_NE(A, B, MESSAGE) CHECK((A) != (B), MESSAGE)