From 778391334e36b4187ee9c3f24eacda80aae445ca Mon Sep 17 00:00:00 2001 From: Jay Satiro Date: Wed, 21 Aug 2024 02:30:50 -0400 Subject: [PATCH] unit1300: fix checksrc longline warnings Closes https://github.com/curl/curl/pull/14624 --- tests/unit/unit1300.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/unit/unit1300.c b/tests/unit/unit1300.c index e408f5ecc2..60a0a0e1b8 100644 --- a/tests/unit/unit1300.c +++ b/tests/unit/unit1300.c @@ -73,9 +73,12 @@ UNITTEST_START * 4: list dtor will be NULL */ - fail_unless(Curl_llist_count(&llist) == 0, "list initial size should be zero"); - fail_unless(Curl_llist_head(&llist) == NULL, "list head should initiate to NULL"); - fail_unless(Curl_llist_tail(&llist) == NULL, "list tail should initiate to NULL"); + fail_unless(Curl_llist_count(&llist) == 0, + "list initial size should be zero"); + fail_unless(Curl_llist_head(&llist) == NULL, + "list head should initiate to NULL"); + fail_unless(Curl_llist_tail(&llist) == NULL, + "list tail should initiate to NULL"); /** * testing Curl_llist_insert_next @@ -87,7 +90,8 @@ UNITTEST_START * 3: list tail will be the same as list head */ - Curl_llist_insert_next(&llist, Curl_llist_head(&llist), &unusedData_case1, &case1_list); + Curl_llist_insert_next(&llist, Curl_llist_head(&llist), &unusedData_case1, + &case1_list); fail_unless(Curl_llist_count(&llist) == 1, "List size should be 1 after adding a new element");