Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViktors Tjarve <viktors.tjarve@zabbix.com>2018-05-25 13:42:11 +0300
committerViktors Tjarve <viktors.tjarve@zabbix.com>2018-05-25 13:42:11 +0300
commit59c1792302148109a17a553dad0ceb10f8902c8f (patch)
tree1c1418a220f23456666078acbd4754664178d6ac /include/memalloc.h
parent6ddab004c4f7258e7bc9762cff0636be92764c5c (diff)
...G...PS. [DEV-841] fixed "ISO C does not allow extra ‘;’ outside of a function" compilation warning
Diffstat (limited to 'include/memalloc.h')
-rw-r--r--include/memalloc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/memalloc.h b/include/memalloc.h
index f6f760e4cf4..c02bf4ae12e 100644
--- a/include/memalloc.h
+++ b/include/memalloc.h
@@ -105,8 +105,8 @@ ZBX_MEM_FUNC1_DECL_FREE(__prefix);
#define ZBX_MEM_FUNC_IMPL(__prefix, __info) \
\
-ZBX_MEM_FUNC1_IMPL_MALLOC(__prefix, __info); \
-ZBX_MEM_FUNC1_IMPL_REALLOC(__prefix, __info); \
-ZBX_MEM_FUNC1_IMPL_FREE(__prefix, __info);
+ZBX_MEM_FUNC1_IMPL_MALLOC(__prefix, __info) \
+ZBX_MEM_FUNC1_IMPL_REALLOC(__prefix, __info) \
+ZBX_MEM_FUNC1_IMPL_FREE(__prefix, __info)
#endif