aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-05-21 13:03:42 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2023-05-21 13:03:42 +0900
commit8424c4f358e3c3dfa2ca4c1183fbe9c92ebc0d0e (patch)
tree77108cf854dbd936c25b724b3c0c33b9f4aa2237
parenta3b296d7b1eb0b526c90a7aaee8aa67f15646a0e (diff)
downloadlinux-firewire-utils-8424c4f358e3c3dfa2ca4c1183fbe9c92ebc0d0e.tar.gz
config-rom-pretty-printer: fix invalid tab indentation
Fixes: fd45d888c1ca ("config-rom-pretty-printer: fix uninitialized warning") Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--src/config-rom-pretty-printer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config-rom-pretty-printer.c b/src/config-rom-pretty-printer.c
index cb85e30..80ceb8f 100644
--- a/src/config-rom-pretty-printer.c
+++ b/src/config-rom-pretty-printer.c
@@ -965,8 +965,8 @@ static size_t format_directory_block(char **buf, size_t length,
base = directory;
break;
default:
- base = NULL;
- break;
+ base = NULL;
+ break;
}
while (base != NULL) {