From f613ee778d8f94ba91b81f049c41eb13306664d6 Mon Sep 17 00:00:00 2001 From: Sebastian Harl Date: Mon, 31 Mar 2014 23:54:53 +0200 Subject: [PATCH] parser_test: Fixed a sign-compare warning/error on GCC. --- t/frontend/parser_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/frontend/parser_test.c b/t/frontend/parser_test.c index 71fc1db..8a2b2d5 100644 --- a/t/frontend/parser_test.c +++ b/t/frontend/parser_test.c @@ -42,7 +42,7 @@ START_TEST(test_parse) const char *query; int len; int expected; - int expected_cmd; + sdb_conn_state_t expected_cmd; } golden_data[] = { /* empty commands */ { NULL, -1, -1, 0 }, -- 2.30.2