This commit is contained in:
simon987 2020-07-16 19:19:23 -04:00
parent 7b9fa4cc0a
commit db96c95ac7
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
VCPKG_ROOT="/vcpkg" VCPKG_ROOT="/usr/share/vcpkg"
rm *.gz rm *.gz

View File

@ -75,7 +75,7 @@ void _logf(const char *filepath, int level, char *format, ...) {
va_start(args, format); va_start(args, format);
if (level == LEVEL_FATAL) { if (level == LEVEL_FATAL) {
sist_logf(filepath, level, format, args); vsist_logf(filepath, level, format, args);
exit(-1); exit(-1);
} }
@ -85,7 +85,7 @@ void _logf(const char *filepath, int level, char *format, ...) {
vsist_logf(filepath, level, format, args); vsist_logf(filepath, level, format, args);
} }
} else { } else {
sist_logf(filepath, level, format, args); vsist_logf(filepath, level, format, args);
} }
} }
va_end(args); va_end(args);