diff options
author | Yang Tse <yangsita@gmail.com> | 2011-05-21 14:39:42 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-05-21 14:39:42 +0200 |
commit | 8b849265d811bb9ce3e93e1d28daf36e7d6e5bfb (patch) | |
tree | 20f0cee7f985d883d8642669f20eb426793e5c08 /tests/unit | |
parent | fce7276f5446e7fc1003b98a9a752a3a42a0a247 (diff) |
compiler warning: fix
Fix compiler warning: enumerated type mixed with another type
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/unit1303.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/unit1303.c b/tests/unit/unit1303.c index f94daf7a6..2e4f23096 100644 --- a/tests/unit/unit1303.c +++ b/tests/unit/unit1303.c @@ -63,7 +63,7 @@ struct timetest { int now_us; int timeout_ms; int connecttimeout_ms; - int connecting; + bool connecting; long result; const char *comment; }; |