diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-28 14:47:53 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-28 14:47:53 +0900 |
commit | 59373a4e03e273841c6c3b7fc9ac29c0a3e90c6d (patch) | |
tree | 68bf3a94d919657469c3fdb7ad2204761571c9bf /config.c | |
parent | bfbc2fccfdff0fe189337de67e16fc132b8ee2a5 (diff) | |
parent | 1cf01a34eaccd6da613dba82291666db237916ab (diff) | |
download | git-59373a4e03e273841c6c3b7fc9ac29c0a3e90c6d.tar.gz |
Merge branch 'jk/fallthrough'
Many codepaths have been updated to squelch -Wimplicit-fallthrough
warnings from Gcc 7 (which is a good code hygiene).
* jk/fallthrough:
consistently use "fallthrough" comments in switches
curl_trace(): eliminate switch fallthrough
test-line-buffer: simplify command parsing
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -2355,6 +2355,7 @@ static ssize_t write_pair(int fd, const char *key, const char *value) case '"': case '\\': strbuf_addch(&sb, '\\'); + /* fallthrough */ default: strbuf_addch(&sb, value[i]); break; |