mirror of
https://github.com/akheron/jansson.git
synced 2025-04-05 21:45:04 +00:00
Don't dump extra spaces when indenting
This commit is contained in:
parent
8ef778c843
commit
68e948f567
1 changed files with 1 additions and 2 deletions
|
@ -54,8 +54,7 @@ static int dump_indent(uint32_t flags, int depth, dump_func dump, void *data)
|
|||
memset(ws_buffer, ' ', ws_count);
|
||||
return dump(ws_buffer, ws_count, data);
|
||||
}
|
||||
else
|
||||
return dump(" ", 1, data);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int dump_string(const char *str, dump_func dump, void *data)
|
||||
|
|
Loading…
Add table
Reference in a new issue