From 49178d8fc737dbbdddf55665ade0ae457ea0a600 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Mon, 21 May 2018 16:38:32 +0200 Subject: [PATCH] unused variable --- src/kernel/order.test.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/kernel/order.test.c b/src/kernel/order.test.c index 1d97578ee..37f88ae5a 100644 --- a/src/kernel/order.test.c +++ b/src/kernel/order.test.c @@ -488,7 +488,6 @@ static void test_study_order_unknown_quoted(CuTest *tc) { static void test_create_order_long(CuTest *tc) { char buffer[2048]; order *ord; - size_t len; struct locale *lang; stream out; const char * longstr = "// BESCHREIBEN EINHEIT \"In weiƃƒ ƒ ƒ ƒ ƒ ƒ ƒ &#" @@ -508,7 +507,6 @@ static void test_create_order_long(CuTest *tc) { test_setup(); lang = test_create_locale(); ord = parse_order(longstr, lang); - len = strlen(longstr); CuAssertIntEquals(tc, 0, ord->command); mstream_init(&out); stream_order(&out, ord, lang, true);