1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 06:33:16 +00:00

semicolon

This commit is contained in:
Calvin Rose 2019-04-05 14:45:45 -04:00
parent ec6e2cfd62
commit ee35786c8f

View File

@ -552,7 +552,7 @@ static Janet os_stat(int32_t argc, Janet *argv) {
struct stat st;
int res = stat(path, &st);
if (-1 == res) {
return janet_wrap_nil()
return janet_wrap_nil();
}
if (getall) {