Commit 991ccdc5bd2f42669389a0cad7c4cb816615da67

lhchavez 2021-08-01T06:19:15

formatting

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
diff --git a/src/cc-compat.h b/src/cc-compat.h
index 21f3211..6bdc651 100644
--- a/src/cc-compat.h
+++ b/src/cc-compat.h
@@ -44,10 +44,10 @@
 #endif
 
 #if defined(__GNUC__)
-# define GIT_UNUSED(x)                                                                              \
-	do {                                                                                       \
-		typeof(x) _unused __attribute__((unused));                                         \
-		_unused = (x);                                                                     \
+# define GIT_UNUSED(x)                                                         \
+	do {                                                                   \
+		typeof(x) _unused __attribute__((unused));                     \
+		_unused = (x);                                                 \
 	} while (0)
 #else
 # define GIT_UNUSED(x) ((void)(x))