From b568973ba3d9392430fa5dbf4e1c23dbb5120947 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Sun, 26 Jun 2011 23:45:18 +0300 Subject: [PATCH] gobex: Minor coding style fixes --- unit/test-gobex.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/unit/test-gobex.c b/unit/test-gobex.c index 053d66816..26dfe7ccc 100644 --- a/unit/test-gobex.c +++ b/unit/test-gobex.c @@ -26,9 +26,11 @@ static uint8_t hdr_connid[] = { G_OBEX_HDR_ID_CONNECTION, 1, 2, 3, 4 }; static uint8_t hdr_name_ascii[] = { G_OBEX_HDR_ID_NAME, 0x00, 0x0b, - 0x00, 'f', 0x00, 'o', 0x00, 'o', 0x00, 0x00 }; + 0x00, 'f', 0x00, 'o', 0x00, 'o', + 0x00, 0x00 }; static uint8_t hdr_name_umlaut[] = { G_OBEX_HDR_ID_NAME, 0x00, 0x0b, - 0x00, 0xe5, 0x00, 0xe4, 0x00, 0xf6, 0x00, 0x00 }; + 0x00, 0xe5, 0x00, 0xe4, 0x00, 0xf6, + 0x00, 0x00 }; static uint8_t hdr_body[] = { G_OBEX_HDR_ID_BODY, 0x00, 0x07, 1, 2, 3, 4 }; static uint8_t hdr_actionid[] = { G_OBEX_HDR_ID_ACTION, 0x00 }; @@ -391,9 +393,9 @@ int main(int argc, char *argv[]) g_test_add_func("/gobex/test_decode_header_connid", test_decode_header_connid); g_test_add_func("/gobex/test_decode_header_name_ascii", - test_decode_header_name_ascii); + test_decode_header_name_ascii); g_test_add_func("/gobex/test_decode_header_name_umlaut", - test_decode_header_name_umlaut); + test_decode_header_name_umlaut); g_test_add_func("/gobex/test_decode_header_body", test_decode_header_body); g_test_add_func("/gobex/test_decode_header_body_extdata", -- 2.47.3