From: Dragan Simic Date: Thu, 21 Mar 2024 06:06:05 +0000 (+0100) Subject: config: minor addition of whitespace X-Git-Tag: v2.45.0-rc0~66^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d49b1e5a8c789dd3f1029f382bd76a464b72da0;p=thirdparty%2Fgit.git 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 Signed-off-by: Junio C Hamano --- diff --git a/config.c b/config.c index 3846a37be9..e6741df5bf 100644 --- a/config.c +++ b/config.c @@ -871,7 +871,7 @@ static char *parse_value(struct config_source *cs) continue; } if (c == '"') { - quote = 1-quote; + quote = 1 - quote; continue; } strbuf_addch(&cs->value, c);