From e5c640572841e51773e6072e0b64de6c2f4092a7 Mon Sep 17 00:00:00 2001
From: Chuck Atkins <chuck.atkins@kitware.com>
Date: Thu, 26 Oct 2017 13:16:16 -0400
Subject: [PATCH] Fix types used for test data in C bindings

---
 testing/adios2/bindings/C/SmallTestData_c.h | 39 +++++++++++----------
 1 file changed, 20 insertions(+), 19 deletions(-)

diff --git a/testing/adios2/bindings/C/SmallTestData_c.h b/testing/adios2/bindings/C/SmallTestData_c.h
index f3aea0ce6..c0801f875 100644
--- a/testing/adios2/bindings/C/SmallTestData_c.h
+++ b/testing/adios2/bindings/C/SmallTestData_c.h
@@ -6,29 +6,30 @@
 #ifndef TESTING_ADIOS2_BINDINGS_C_SMALLTESTDATA_C_H_
 #define TESTING_ADIOS2_BINDINGS_C_SMALLTESTDATA_C_H_
 
-size_t data_Nx = 10;
-char data_I8[10] = {0, 1, -2, 3, -4, 5, -6, 7, -8, 9};
-short data_I16[10] = {512, 513, -510, 515, -508, 517, -506, 519, -504, 521};
-int data_I32[10] = {131072, 131073,  -131070, 131075,  -131068,
-                    131077, -131066, 131079,  -131064, 131081};
-long int data_I64[10] = {8589934592,  8589934593, -8589934590, 8589934595,
-                         -8589934588, 8589934597, -8589934586, 8589934599,
-                         -8589934584, 8589934601};
+#include <stdint.h>
 
-unsigned char data_U8[10] = {128, 129, 130, 131, 132, 133, 134, 135, 136, 137};
+size_t data_Nx = 10;
 
-unsigned short data_U16[10] = {32768, 32769, 32770, 32771, 32772,
-                               32773, 32774, 32775, 32776, 32777};
+int8_t data_I8[10] = {0, 1, -2, 3, -4, 5, -6, 7, -8, 9};
+int16_t data_I16[10] = {512, 513, -510, 515, -508, 517, -506, 519, -504, 521};
+int32_t data_I32[10] = {131072, 131073,  -131070, 131075,  -131068,
+                        131077, -131066, 131079,  -131064, 131081};
+int64_t data_I64[10] = {8589934592,  8589934593, -8589934590, 8589934595,
+                        -8589934588, 8589934597, -8589934586, 8589934599,
+                        -8589934584, 8589934601};
 
-unsigned int data_U32[10] = {2147483648, 2147483649, 2147483650, 2147483651,
-                             2147483652, 2147483653, 2147483654, 2147483655,
-                             2147483656, 2147483657};
+uint8_t data_U8[10] = {128, 129, 130, 131, 132, 133, 134, 135, 136, 137};
+uint16_t data_U16[10] = {32768, 32769, 32770, 32771, 32772,
+                         32773, 32774, 32775, 32776, 32777};
+uint32_t data_U32[10] = {2147483648, 2147483649, 2147483650, 2147483651,
+                         2147483652, 2147483653, 2147483654, 2147483655,
+                         2147483656, 2147483657};
+uint64_t data_U64[10] = {9223372036854775808UL, 9223372036854775809UL,
+                         9223372036854775810UL, 9223372036854775811UL,
+                         9223372036854775812UL, 9223372036854775813UL,
+                         9223372036854775814UL, 9223372036854775815UL,
+                         9223372036854775816UL, 9223372036854775817UL};
 
-unsigned long int data_U64[10] = {9223372036854775808UL, 9223372036854775809UL,
-                                  9223372036854775810UL, 9223372036854775811UL,
-                                  9223372036854775812UL, 9223372036854775813UL,
-                                  9223372036854775814UL, 9223372036854775815UL,
-                                  9223372036854775816UL, 9223372036854775817UL};
 float data_R32[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
 double data_R64[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
 
-- 
GitLab