summaryrefslogtreecommitdiff
path: root/pkg/iproute2/patch/0006-Remove-semicolon-after-function-definitions.patch
blob: bbbca39fcfb6e45ef958b4c71e361390264fcea2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
From 12c947c84f95faac8d951804d097eed6bd5a2570 Mon Sep 17 00:00:00 2001
From: Michael Forney <mforney@mforney.org>
Date: Sun, 16 Jun 2019 12:39:04 -0700
Subject: [PATCH] Remove semicolon after function definitions

---
 lib/json_print.c | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/lib/json_print.c b/lib/json_print.c
index 810d496e..97d7defe 100644
--- a/lib/json_print.c
+++ b/lib/json_print.c
@@ -133,15 +133,15 @@ void close_json_array(enum output_type type, const char *str)
 		}							\
 		return ret;						\
 	}
-_PRINT_FUNC(int, int);
-_PRINT_FUNC(s64, int64_t);
-_PRINT_FUNC(hhu, unsigned char);
-_PRINT_FUNC(hu, unsigned short);
-_PRINT_FUNC(uint, unsigned int);
-_PRINT_FUNC(u64, uint64_t);
-_PRINT_FUNC(luint, unsigned long);
-_PRINT_FUNC(lluint, unsigned long long);
-_PRINT_FUNC(float, double);
+_PRINT_FUNC(int, int)
+_PRINT_FUNC(s64, int64_t)
+_PRINT_FUNC(hhu, unsigned char)
+_PRINT_FUNC(hu, unsigned short)
+_PRINT_FUNC(uint, unsigned int)
+_PRINT_FUNC(u64, uint64_t)
+_PRINT_FUNC(luint, unsigned long)
+_PRINT_FUNC(lluint, unsigned long long)
+_PRINT_FUNC(float, double)
 #undef _PRINT_FUNC
 
 #define _PRINT_NAME_VALUE_FUNC(type_name, type, format_char)		 \
@@ -153,8 +153,8 @@ _PRINT_FUNC(float, double);
 			 "%s %%"#format_char, name);			 \
 		print_##type_name(PRINT_ANY, name, format, value);	 \
 	}
-_PRINT_NAME_VALUE_FUNC(uint, unsigned int, u);
-_PRINT_NAME_VALUE_FUNC(string, const char*, s);
+_PRINT_NAME_VALUE_FUNC(uint, unsigned int, u)
+_PRINT_NAME_VALUE_FUNC(string, const char*, s)
 #undef _PRINT_NAME_VALUE_FUNC
 
 int print_color_string(enum output_type type,
-- 
2.44.0