summaryrefslogtreecommitdiff
path: root/test/tokeniser3.c
diff options
context:
space:
mode:
authorMichael Drake <michael.drake@codethink.co.uk>2021-05-15 18:49:36 +0100
committerMichael Drake <michael.drake@codethink.co.uk>2021-05-15 19:59:24 +0100
commit26a7ff24df8cb52c08bab23cff7a8f5ceb3c4465 (patch)
treed9dd6de263576723cfb57233dd10139b269b9f0e /test/tokeniser3.c
parentc0c4d702b5560c0590d73af4ea055514cab38e4f (diff)
downloadlibhubbub-26a7ff24df8cb52c08bab23cff7a8f5ceb3c4465.tar.gz
libhubbub-26a7ff24df8cb52c08bab23cff7a8f5ceb3c4465.tar.bz2
Tests: Squash comparison of signed vs unsigned warnings.
Diffstat (limited to 'test/tokeniser3.c')
-rw-r--r--test/tokeniser3.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/tokeniser3.c b/test/tokeniser3.c
index 22bda5c..416ff5d 100644
--- a/test/tokeniser3.c
+++ b/test/tokeniser3.c
@@ -55,7 +55,7 @@ int main(int argc, char **argv)
tests = json_object_get_array((struct json_object *)
(json_object_get_object(json)->head)->v);
- for (i = 0; i < array_list_length(tests); i++) {
+ for (i = 0; i < (int)array_list_length(tests); i++) {
/* Get test */
struct json_object *test =
(struct json_object *) array_list_get_idx(tests, i);
@@ -221,7 +221,7 @@ hubbub_error token_handler(const hubbub_token *token, void *pw)
struct json_object *obj = NULL;
struct array_list *items;
- for (; ctx->output_index < array_list_length(ctx->output);
+ for (; ctx->output_index < (int)array_list_length(ctx->output);
ctx->output_index++) {
/* Get object for index */
obj = (struct json_object *)
@@ -241,11 +241,11 @@ hubbub_error token_handler(const hubbub_token *token, void *pw)
* produced more tokens than expected. We allow for the generation
* of a terminating EOF token, however. */
assert("too many tokens" &&
- (ctx->output_index < array_list_length(ctx->output) ||
+ (ctx->output_index < (int)array_list_length(ctx->output) ||
token->type == HUBBUB_TOKEN_EOF));
/* Got a terminating EOF -- no error */
- if (ctx->output_index >= array_list_length(ctx->output))
+ if (ctx->output_index >= (int)array_list_length(ctx->output))
return HUBBUB_OK;
/* Now increment the output index so we don't re-expect this token */