From 0d49b1e5a8c789dd3f1029f382bd76a464b72da0 Mon Sep 17 00:00:00 2001 From: Dragan Simic Date: Thu, 21 Mar 2024 07:06:05 +0100 Subject: [PATCH] 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 --- config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2