Fix check_glob.c

On ARM, the missing return 0 at end causes the program to return 16.
I believe that this is an error relative to the standard, but
in any case, it's worth fixing.
This commit is contained in:
Christophe de Dinechin 2018-11-17 17:55:07 +01:00
parent 3fcd9e674d
commit 02f28c2f32
1 changed files with 1 additions and 0 deletions

View File

@ -11,4 +11,5 @@ int main()
const char *pattern = "*";
glob(pattern, GLOB_MARK, glob_error, &files);
globfree(&files);
return 0;
}