diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-14 10:15:49 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2020-01-31 14:52:49 +0100 |
commit | a27c957dc5100b33dd13ef4da1bcf19e40073ffd (patch) | |
tree | c89f5a9e66b9f1c314460e746bb03ba0b63b098d /src/tests/test-modem-helpers.c | |
parent | 6dcbda1c808c8e151f395bd0bcf3c06a0c094929 (diff) |
test-modem-helpers: fix warnings with -Wsign-compare
test-modem-helpers.c: In function ‘test_creg_match’:
test-modem-helpers.c:1127:19: error: comparison of integer expressions of different signedness: ‘int’ and ‘guint’ {aka ‘unsigned int’} [-Werror=sign-compare]
1127 | for (i = 0; i < array->len; i++) {
| ^
Diffstat (limited to 'src/tests/test-modem-helpers.c')
-rw-r--r-- | src/tests/test-modem-helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/test-modem-helpers.c b/src/tests/test-modem-helpers.c index 76c58b07..f2becc94 100644 --- a/src/tests/test-modem-helpers.c +++ b/src/tests/test-modem-helpers.c @@ -1103,7 +1103,7 @@ test_creg_match (const char *test, RegTestData *data, const CregResult *result) { - int i; + guint i; GMatchInfo *info = NULL; MMModem3gppRegistrationState state = MM_MODEM_3GPP_REGISTRATION_STATE_UNKNOWN; MMModemAccessTechnology access_tech = MM_MODEM_ACCESS_TECHNOLOGY_UNKNOWN; |