Build fix.

This commit is contained in:
Cory McWilliams 2024-06-12 21:08:41 -04:00
parent a09edfb612
commit 57ca864fbb

View File

@ -190,7 +190,7 @@ static JSValue _tf_ssb_addIdentity(JSContext* context, JSValueConst this_val, in
} }
else else
{ {
result = JS_ThrowInternalError(context, "Unexpected private key size: %zd vs. %d\n", length, crypto_sign_SECRETKEYBYTES); result = JS_ThrowInternalError(context, "Unexpected private key size: %d vs. %d\n", (int)length, crypto_sign_SECRETKEYBYTES);
} }
} }
else else