diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2016-11-23 16:19:57 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2016-11-23 19:27:09 +0100 |
commit | 905c8a48e96350af002536b627b46fbf517f727c (patch) | |
tree | dc73581b5393b4f5ea0101e420581206b86e0e4e /libqcdm/tests/test-qcdm-result.c | |
parent | 944e34ecdb9028b68b2144dd2c6d698d508f1808 (diff) |
libqcdm,libwmc: use C99 sized types from stdint.h
Diffstat (limited to 'libqcdm/tests/test-qcdm-result.c')
-rw-r--r-- | libqcdm/tests/test-qcdm-result.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libqcdm/tests/test-qcdm-result.c b/libqcdm/tests/test-qcdm-result.c index 1c9c74f0..f0e097af 100644 --- a/libqcdm/tests/test-qcdm-result.c +++ b/libqcdm/tests/test-qcdm-result.c @@ -76,8 +76,8 @@ test_result_uint8 (void *f, void *data) void test_result_uint8_array (void *f, void *data) { - u_int8_t array[] = { 0, 1, 255, 32, 128, 127 }; - const u_int8_t *tmp = NULL; + uint8_t array[] = { 0, 1, 255, 32, 128, 127 }; + const uint8_t *tmp = NULL; size_t tmp_len = 0; QcdmResult *result; @@ -90,4 +90,3 @@ test_result_uint8_array (void *f, void *data) qcdm_result_unref (result); } - |