1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-24 17:27:18 +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
No known key found for this signature in database
GPG Key ID: C83A456999EEBC34

View File

@ -63,7 +63,7 @@ Janet janet_line_getter(int32_t argc, Janet *argv) {
gbl_cancel_current_repl_form = false; gbl_cancel_current_repl_form = false;
// Signal that the user bailed out of the current form // 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); result = janet_ckeywordv(msg);
} else { } else {
result = janet_wrap_buffer(buf); result = janet_wrap_buffer(buf);