summaryrefslogtreecommitdiffhomepage
path: root/dbutil.h
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2015-08-03 20:46:29 +0800
committerMatt Johnston <matt@ucc.asn.au>2015-08-03 20:46:29 +0800
commitc7bd5ac77d2ee4ea88a9f153eecd5c5fcbe3a14a (patch)
tree39548de22d3c50a9c728b2c20a016f20b8c195df /dbutil.h
parent941c067765fce8d8f9cf73bc77ffc4b8791395c0 (diff)
remove extraneous semicolon from m_free #define
Diffstat (limited to 'dbutil.h')
-rw-r--r--dbutil.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbutil.h b/dbutil.h
index 71f3bdc..e1db328 100644
--- a/dbutil.h
+++ b/dbutil.h
@@ -78,7 +78,7 @@ void m_close(int fd);
void * m_malloc(size_t size);
void * m_strdup(const char * str);
void * m_realloc(void* ptr, size_t size);
-#define m_free(X) do {free(X); (X) = NULL;} while (0);
+#define m_free(X) do {free(X); (X) = NULL;} while (0)
void m_burn(void* data, unsigned int len);
void setnonblocking(int fd);
void disallow_core();