mirror of
https://github.com/janet-lang/janet
synced 2024-11-25 09:47:17 +00:00
Fix MSVC warning.
This commit is contained in:
parent
a474a640be
commit
5b36199aea
@ -635,7 +635,7 @@ void janet_parser_deinit(JanetParser *parser) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int janet_parser_has_more(JanetParser *parser) {
|
int janet_parser_has_more(JanetParser *parser) {
|
||||||
return parser->pending;
|
return !!parser->pending;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* C functions */
|
/* C functions */
|
||||||
|
Loading…
Reference in New Issue
Block a user