1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-29 22:53:03 +00:00

Address compilation warning about modifier order

This commit is contained in:
LouisJackman
2020-05-21 18:51:25 +01:00
parent 50df5000c2
commit c3e4cbe950

View File

@@ -63,7 +63,7 @@ Janet janet_line_getter(int32_t argc, Janet *argv) {
gbl_cancel_current_repl_form = false;
// Signal that the user bailed out of the current form
const static char *const msg = "cancel";
static const char *const msg = "cancel";
result = janet_ckeywordv(msg);
} else {
result = janet_wrap_buffer(buf);