]> git.ipfire.org Git - thirdparty/git.git/blobdiff - config.c
consistently use "fallthrough" comments in switches
[thirdparty/git.git] / config.c
index cd5a69e6308c0cad6028deb04fb17e8d2dc4086c..08490dfe81f369bc863635f34c275a343ba31db5 100644 (file)
--- a/config.c
+++ b/config.c
@@ -2353,6 +2353,7 @@ static int store_write_pair(int fd, const char *key, const char *value)
                case '"':
                case '\\':
                        strbuf_addch(&sb, '\\');
+                       /* fallthrough */
                default:
                        strbuf_addch(&sb, value[i]);
                        break;