1
0
mirror of https://github.com/janet-lang/janet synced 2026-04-22 06:41:26 +00:00

Merge pull request #712 from sogaiu/tweak-function-name

Tweak function name
This commit is contained in:
Calvin Rose
2021-07-11 08:11:48 -05:00
committed by GitHub

View File

@@ -71,7 +71,7 @@ void janet_panicv(Janet message) {
janet_signalv(JANET_SIGNAL_ERROR, message);
}
void janet_anicf(const char *format, ...) {
void janet_panicf(const char *format, ...) {
va_list args;
const uint8_t *ret;
JanetBuffer buffer;