From c7bd5ac77d2ee4ea88a9f153eecd5c5fcbe3a14a Mon Sep 17 00:00:00 2001
From: Matt Johnston <matt@ucc.asn.au>
Date: Mon, 3 Aug 2015 20:46:29 +0800
Subject: [PATCH] remove extraneous semicolon from m_free #define

---
 dbutil.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dbutil.h b/dbutil.h
index 71f3bdcd..e1db3280 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();
-- 
GitLab