1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-28 19:19:53 +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
commit dafd2329c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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