From 6ccb48f81a0242c3ba2ddd583ded0582364eeacd Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 19 Jan 2026 09:00:00 +0100 Subject: all: reformat C/C++ files --- tools/syz-headerparser/test_headers/th_b.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools/syz-headerparser/test_headers/th_b.h') diff --git a/tools/syz-headerparser/test_headers/th_b.h b/tools/syz-headerparser/test_headers/th_b.h index 4b32e6041..7a42735fe 100644 --- a/tools/syz-headerparser/test_headers/th_b.h +++ b/tools/syz-headerparser/test_headers/th_b.h @@ -4,11 +4,11 @@ #ifndef _TEST_HEADER_B #define _TEST_HEADER_B -#include /* header comment */ +#include /* header comment */ enum random_enum { - ONE = 1<<0, - TWO = 1<<1, + ONE = 1 << 0, + TWO = 1 << 1, }; struct B { @@ -19,8 +19,8 @@ struct B { struct struct_containing_union { int something; union { - char *a_char; - struct B *B_ptr; + char* a_char; + struct B* B_ptr; } a_union; }; -- cgit mrf-deployment