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:
authorAlexander Vladishev <aleksander.vladishev@zabbix.com>2010-10-07 14:50:12 +0400
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2010-10-07 14:50:12 +0400
commit672dd973d262d71ab278aa75369ba9e12668fabe (patch)
treef36f704fd09c5b7e74d0f30cbb44559d5050e73b /include/zbxtypes.h
parentdb4345b0a74dcc90f947cbf8944d44b0938f74a6 (diff)
- [DEV-480] removed semicolon from ZBX_...2UINT64 definitions
Diffstat (limited to 'include/zbxtypes.h')
-rw-r--r--include/zbxtypes.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/zbxtypes.h b/include/zbxtypes.h
index 38007cfa679..96ca5a269e4 100644
--- a/include/zbxtypes.h
+++ b/include/zbxtypes.h
@@ -123,9 +123,9 @@
# define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
#endif
-#define ZBX_STR2UINT64(uint, string) sscanf(string, ZBX_FS_UI64, &uint);
-#define ZBX_OCT2UINT64(uint, string) sscanf(string, ZBX_FS_UO64, &uint);
-#define ZBX_HEX2UINT64(uint, string) sscanf(string, ZBX_FS_UX64, &uint);
+#define ZBX_STR2UINT64(uint, string) sscanf(string, ZBX_FS_UI64, &uint)
+#define ZBX_OCT2UINT64(uint, string) sscanf(string, ZBX_FS_UO64, &uint)
+#define ZBX_HEX2UINT64(uint, string) sscanf(string, ZBX_FS_UX64, &uint)
#define ZBX_CONST_STRING(str) ""str