src/plugin.h: Use `int64_t' for `derive_t' and `uint64_t' for `absolute_t'.
authorFlorian Forster <octo@huhu.verplant.org>
Wed, 1 Jul 2009 09:00:32 +0000 (11:00 +0200)
committerFlorian Forster <octo@noris.net>
Wed, 1 Jul 2009 13:41:26 +0000 (15:41 +0200)
src/plugin.h

index fd74150..0ccb198 100644 (file)
 
 #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
  */
 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;