aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/unit1303.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2011-05-21 14:39:42 +0200
committerYang Tse <yangsita@gmail.com>2011-05-21 14:39:42 +0200
commit8b849265d811bb9ce3e93e1d28daf36e7d6e5bfb (patch)
tree20f0cee7f985d883d8642669f20eb426793e5c08 /tests/unit/unit1303.c
parentfce7276f5446e7fc1003b98a9a752a3a42a0a247 (diff)
compiler warning: fix
Fix compiler warning: enumerated type mixed with another type
Diffstat (limited to 'tests/unit/unit1303.c')
-rw-r--r--tests/unit/unit1303.c2
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;
};