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:
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 97ec0298ebb..da85d487359 100644
--- a/include/zbxtypes.h
+++ b/include/zbxtypes.h
@@ -154,10 +154,10 @@ typedef off_t zbx_offset_t;
#define ZBX_FS_SIZE_T ZBX_FS_UI64
#define ZBX_FS_SSIZE_T ZBX_FS_I64
-#define ZBX_FS_TIME_T_T ZBX_FS_I64
+#define ZBX_FS_TIME_T ZBX_FS_I64
#define zbx_fs_size_t zbx_uint64_t /* use this type only in calls to printf() for formatting size_t */
#define zbx_fs_ssize_t zbx_int64_t /* use this type only in calls to printf() for formatting ssize_t */
-#define zbx_fs_time_t_t zbx_int64_t /* use this type only in calls to printf() for formatting time_t */
+#define zbx_fs_time_t zbx_int64_t /* use this type only in calls to printf() for formatting time_t */
#ifndef S_ISREG
# define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)