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 /libwmc/src/commands.h | |
parent | 944e34ecdb9028b68b2144dd2c6d698d508f1808 (diff) |
libqcdm,libwmc: use C99 sized types from stdint.h
Diffstat (limited to 'libwmc/src/commands.h')
-rw-r--r-- | libwmc/src/commands.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libwmc/src/commands.h b/libwmc/src/commands.h index 3e5a483d..75c1afd4 100644 --- a/libwmc/src/commands.h +++ b/libwmc/src/commands.h @@ -107,7 +107,7 @@ WmcResult * wmc_cmd_get_global_mode_result (const char *buf, size_t len); /**********************************************************************/ -size_t wmc_cmd_set_global_mode_new (char *buf, size_t buflen, u_int8_t mode); +size_t wmc_cmd_set_global_mode_new (char *buf, size_t buflen, uint8_t mode); WmcResult * wmc_cmd_set_global_mode_result (const char *buf, size_t len); |