diff options
author | Filip Gawin <[email protected]> | 2018-10-29 02:05:45 +0100 |
---|---|---|
committer | Filip Gawin <[email protected]> | 2018-10-29 13:38:58 +0100 |
commit | 08226bc6b0147b69a1afb74d83c6a8821e93601b (patch) | |
tree | fd39c1d42c21eb751b1aa9696d7c758f6fc7d4de /Alc/helpers.c | |
parent | 56b8b976427175731b205262f11b420581e24efd (diff) |
Simplify some statements
Diffstat (limited to 'Alc/helpers.c')
-rw-r--r-- | Alc/helpers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Alc/helpers.c b/Alc/helpers.c index d2cb6253..0d5087e6 100644 --- a/Alc/helpers.c +++ b/Alc/helpers.c @@ -842,7 +842,7 @@ static void DirectorySearch(const char *path, const char *ext, vector_al_string continue; len = strlen(dirent->d_name); - if(!(len > extlen)) + if(len <= extlen) continue; if(strcasecmp(dirent->d_name+len-extlen, ext) != 0) continue; |