From b653a5250dc6f6c806e13b0f6cd96e6e66168d61 Mon Sep 17 00:00:00 2001 From: Cory McWilliams Date: Tue, 15 Oct 2024 12:41:47 -0400 Subject: [PATCH] build: Appease gcc 14. --- src/ssb.js.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssb.js.c b/src/ssb.js.c index 66c0614c..2d5fdef6 100644 --- a/src/ssb.js.c +++ b/src/ssb.js.c @@ -1947,7 +1947,7 @@ enum static bool _tf_ssb_get_private_key_curve25519(sqlite3* db, const char* user, const char* identity, uint8_t out_private_key[static crypto_sign_SECRETKEYBYTES]) { - if (!user || !identity || !out_private_key) + if (!user || !identity) { tf_printf("user=%p identity=%p out_private_key=%p\n", user, identity, out_private_key); return false;