Skip to content
Snippets Groups Projects
Commit ffe005ed authored by Adam Wujek's avatar Adam Wujek
Browse files

userspace/libwr/dot-config: fix recognition of help block's indentation


Signed-off-by: default avatarAdam Wujek <dev_public@wujek.eu>
parent 7a525020
Branches
Tags
No related merge requests found
...@@ -249,7 +249,7 @@ static int libwr_cfg_read_kconfig(struct kc **all_configs, ...@@ -249,7 +249,7 @@ static int libwr_cfg_read_kconfig(struct kc **all_configs,
} }
} else { } else {
// In help section // In help section
if ( indentation>=helpIndentation ) if (indentation > helpIndentation)
continue; // Still in help section continue; // Still in help section
helpIndentation=-1; // Exiting help section helpIndentation=-1; // Exiting help section
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment