whitespace cleanup

This commit is contained in:
Axel Kohlmeyer
2018-06-01 16:11:43 -04:00
parent 56c3a0be29
commit 7ca794beb9

View File

@ -28,7 +28,7 @@ static const char *truncpath(const char *path)
if (path) {
int len = strlen(path);
for (int i = len-4; i > 0; --i) {
if (strncmp("src/",path+i,4) == 0)
if (strncmp("src/",path+i,4) == 0)
return path+i;
}
}