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>2022-09-15 13:25:01 +0300
committerAlexander Vladishev <aleksander.vladishev@zabbix.com>2022-09-15 13:25:01 +0300
commitf8f90ded8fa174c50755d2fded77694ca99c3736 (patch)
treedf38d05029daf0c46ce8034de5fc3e3d590596ac /include/zbxtypes.h
parent0d59700b87bbb35f189fa2e7a0f1c52917679242 (diff)
...G...PS. [ZBX-20864] fixed format specifier definitions on AIX
This reverts commit 0d59700b87bbb35f189fa2e7a0f1c52917679242, reversing changes made to 42aa928be588b232bf0b09144ea099c1a4779cb5.
Diffstat (limited to 'include/zbxtypes.h')
-rw-r--r--include/zbxtypes.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/zbxtypes.h b/include/zbxtypes.h
index d81244652a1..ba799ab27c0 100644
--- a/include/zbxtypes.h
+++ b/include/zbxtypes.h
@@ -106,7 +106,7 @@ typedef long ssize_t;
# endif
# define zbx_uint64_t uint64_t
-# if __WORDSIZE == 64 || defined(__64BIT__)
+# if __WORDSIZE == 64
# if defined(__APPLE__) && defined(__MACH__) /* OS X */
# define ZBX_FS_UI64 "%llu"
# define ZBX_FS_UO64 "%llo"
@@ -129,7 +129,7 @@ typedef long ssize_t;
# endif
# define zbx_int64_t int64_t
-# if __WORDSIZE == 64 || defined(__64BIT__)
+# if __WORDSIZE == 64
# if defined(__APPLE__) && defined(__MACH__) /* OS X */
# define ZBX_FS_I64 "%lld"
# define ZBX_FS_O64 "%llo"