diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2009-01-29 17:58:28 +0100 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2009-01-29 17:58:28 +0100 |
commit | 9c0b5859e6cc4b7a0e925fde8665990281b265d3 (patch) | |
tree | 8994dbe0942d56c9a7cf470fc3b2316d1f91e0a3 /test | |
parent | 1ce81e1e0794a5d619016e17b33b533b614fc6a9 (diff) |
Fix mostly every warning caused by -Wsign-compare
Diffstat (limited to 'test')
-rw-r--r-- | test/sdptest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/sdptest.c b/test/sdptest.c index 141a195e..cccb1da7 100644 --- a/test/sdptest.c +++ b/test/sdptest.c @@ -43,7 +43,7 @@ static volatile sig_atomic_t __io_finished = 0; static void callback(uint8_t type, uint16_t status, uint8_t *rsp, size_t size, void *udata) { - int i; + unsigned int i; for (i = 0; i < size; i++) { printf("%02x ", rsp[i]); |