From c66b2e7d3985a636bea145637ca7171208f0a637 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Wed, 1 Jul 2009 11:00:32 +0200 Subject: [PATCH] src/plugin.h: Use `int64_t' for `derive_t' and `uint64_t' for `absolute_t'. --- src/plugin.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/plugin.h b/src/plugin.h index fd741501..0ccb198c 100644 --- a/src/plugin.h +++ b/src/plugin.h @@ -28,10 +28,10 @@ #define DATA_MAX_NAME_LEN 64 -#define DS_TYPE_COUNTER 0 -#define DS_TYPE_GAUGE 1 +#define DS_TYPE_COUNTER 0 +#define DS_TYPE_GAUGE 1 #define DS_TYPE_DERIVE 2 -#define DS_TYPE_ABSOLUTE 3 +#define DS_TYPE_ABSOLUTE 3 #ifndef LOG_ERR # define LOG_ERR 3 @@ -60,15 +60,15 @@ */ typedef unsigned long long counter_t; typedef double gauge_t; -typedef unsigned long long derive_t; -typedef unsigned long long absolute_t; +typedef int64_t derive_t; +typedef uint64_t absolute_t; union value_u { - counter_t counter; - gauge_t gauge; + counter_t counter; + gauge_t gauge; derive_t derive; - absolute_t absolute; + absolute_t absolute; }; typedef union value_u value_t; -- 2.11.0