mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-22 20:25:39 +02:00
config: remove extra ';'
This commit is contained in:
parent
7fc9749c28
commit
2562d94f24
1 changed files with 1 additions and 1 deletions
2
config.c
2
config.c
|
@ -217,7 +217,7 @@ particle_list_from_config(const struct yml_node *node,
|
|||
int left_spacing = spacing != NULL ? yml_value_as_int(spacing) :
|
||||
_left_spacing != NULL ? yml_value_as_int(_left_spacing) : 0;
|
||||
int right_spacing = spacing != NULL ? yml_value_as_int(spacing) :
|
||||
_right_spacing != NULL ? yml_value_as_int(_right_spacing) : 2;;
|
||||
_right_spacing != NULL ? yml_value_as_int(_right_spacing) : 2;
|
||||
|
||||
size_t count = yml_list_length(items);
|
||||
struct particle *parts[count];
|
||||
|
|
Loading…
Add table
Reference in a new issue