From: Thomas Hindoe Paaboel Andersen Date: Tue, 7 Apr 2015 18:28:27 +0000 (+0200) Subject: test-util: don't mix declarations and code X-Git-Tag: v220~553 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5d84c44a976794625889f3d24e57835d5de234e3;p=thirdparty%2Fsystemd.git test-util: don't mix declarations and code --- diff --git a/src/test/test-util.c b/src/test/test-util.c index aaf25f88bb1..052e292a6c6 100644 --- a/src/test/test-util.c +++ b/src/test/test-util.c @@ -416,10 +416,10 @@ static void test_cescape(void) { static void test_cunescape(void) { _cleanup_free_ char *unescaped; + const char *x = "abc\\\"\b\f\a\n\r\t\v\003\177\234\313\\000\\x00"; assert_se(cunescape("abc\\\\\\\"\\b\\f\\a\\n\\r\\t\\v\\003\\177\\234\\313\\000\\x00", 0, &unescaped) < 0); assert_se(cunescape("abc\\\\\\\"\\b\\f\\a\\n\\r\\t\\v\\003\\177\\234\\313\\000\\x00", UNESCAPE_RELAX, &unescaped) >= 0); - const char *x = "abc\\\"\b\f\a\n\r\t\v\003\177\234\313\\000\\x00"; assert_se(streq_ptr(unescaped, x)); free(unescaped); unescaped = NULL;