2aacef
From 0c372e24bb30c25beccd76c071baca22258e71c9 Mon Sep 17 00:00:00 2001
2aacef
From: Yu Watanabe <watanabe.yu+github@gmail.com>
2aacef
Date: Wed, 26 Oct 2022 03:28:08 +0900
2aacef
Subject: [PATCH] macro: fix indentation
2aacef
2aacef
(cherry picked from commit e967926b092d8635b3da28fc4ca492009e32228f)
2aacef
2aacef
Related #2138081
2aacef
---
2aacef
 src/fundamental/macro-fundamental.h | 2 +-
2aacef
 1 file changed, 1 insertion(+), 1 deletion(-)
2aacef
2aacef
diff --git a/src/fundamental/macro-fundamental.h b/src/fundamental/macro-fundamental.h
2aacef
index 63f4c49e78..faab16ab31 100644
2aacef
--- a/src/fundamental/macro-fundamental.h
2aacef
+++ b/src/fundamental/macro-fundamental.h
2aacef
@@ -290,7 +290,7 @@
2aacef
                 switch (x) {                                            \
2aacef
                 FOR_EACH_MAKE_CASE(__VA_ARGS__)                         \
2aacef
                         _found = true;                                  \
2aacef
-                       break;                                           \
2aacef
+                        break;                                          \
2aacef
                 default:                                                \
2aacef
                         break;                                          \
2aacef
                 }                                                       \