Add missing semicolon - noice - small file browser (mirror / fork from 2f30.org) | |
git clone git://git.codemadness.org/noice | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit a4352f2531ce4d60125307084486a035869dad2c | |
parent 79da6411cc7585738aabbf42be2858705a6a5c9f | |
Author: cel <cel@f/6sQ6d2CMxRUhLpspgGIulDxDCwYD7DzFzPNr7u5AU=.ed25519> | |
Date: Fri, 4 Jan 2019 19:23:47 +0000 | |
Add missing semicolon | |
Diffstat: | |
M noice.c | 2 +- | |
1 file changed, 1 insertion(+), 1 deletion(-) | |
--- | |
diff --git a/noice.c b/noice.c | |
@@ -743,7 +743,7 @@ nochange: | |
} | |
strlcpy(path, newpath, sizeof(path)); | |
/* Reset filter */ | |
- strlcpy(fltr, ifilter, sizeof(fltr)) | |
+ strlcpy(fltr, ifilter, sizeof(fltr)); | |
DPRINTF_S(path); | |
goto begin; | |
case SEL_CDHOME: |