mirror of
https://github.com/janet-lang/janet
synced 2024-11-25 01:37:19 +00:00
Silence warnings from some compilers.
This commit is contained in:
parent
d393fbf360
commit
0403e306ed
@ -1,6 +1,9 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
## Unreleased - ???
|
||||||
|
- Silence warnings in some compilers.
|
||||||
|
|
||||||
## 1.11.1 - 2020-07-25
|
## 1.11.1 - 2020-07-25
|
||||||
- Fix jpm and git with multiple git installs on Windows
|
- Fix jpm and git with multiple git installs on Windows
|
||||||
- Fix importing a .so file in the current directory
|
- Fix importing a .so file in the current directory
|
||||||
|
@ -28,9 +28,9 @@
|
|||||||
|
|
||||||
#define JANET_VERSION_MAJOR 1
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 11
|
#define JANET_VERSION_MINOR 11
|
||||||
#define JANET_VERSION_PATCH 1
|
#define JANET_VERSION_PATCH 2
|
||||||
#define JANET_VERSION_EXTRA ""
|
#define JANET_VERSION_EXTRA "-dev"
|
||||||
#define JANET_VERSION "1.11.1"
|
#define JANET_VERSION "1.11.2-dev"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
@ -289,8 +289,8 @@ static Janet cfun_io_fclose(int32_t argc, Janet *argv) {
|
|||||||
janet_panic("could not close file");
|
janet_panic("could not close file");
|
||||||
}
|
}
|
||||||
iof->flags |= JANET_FILE_CLOSED;
|
iof->flags |= JANET_FILE_CLOSED;
|
||||||
return janet_wrap_nil();
|
|
||||||
}
|
}
|
||||||
|
return janet_wrap_nil();
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Seek a file */
|
/* Seek a file */
|
||||||
|
Loading…
Reference in New Issue
Block a user