Skip to content

Commit 0d49b1e

Browse files
Dragan Simicgitster
authored andcommitted
config: minor addition of whitespace
In general, binary operators should be enclosed in a pair of leading and trailing space (SP) characters. Thus, clean up one spotted expression that for some reason had a "bunched up" operator. Signed-off-by: Dragan Simic <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 61a22dd commit 0d49b1e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,7 @@ static char *parse_value(struct config_source *cs)
871871
continue;
872872
}
873873
if (c == '"') {
874-
quote = 1-quote;
874+
quote = 1 - quote;
875875
continue;
876876
}
877877
strbuf_addch(&cs->value, c);

0 commit comments

Comments
 (0)