From 97713275dc87ea1d0afa4fd6bc49f695ad40efc0 Mon Sep 17 00:00:00 2001 From: "@syxhe" Date: Fri, 28 Mar 2025 17:23:55 -0500 Subject: Create xalloc function and wrappers, fix XALLOC_EXIT usages to comply with ISO C99 --- src/encryption.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/encryption.c') diff --git a/src/encryption.c b/src/encryption.c index 9b8715e..b75a119 100644 --- a/src/encryption.c +++ b/src/encryption.c @@ -206,7 +206,7 @@ void* xsodium_malloc(size_t size) { void *mem = sodium_malloc(size); if(mem == NULL) - XALLOC_EXIT(" could not allocate memory... Quitting"); + XALLOC_EXIT(" could not allocate memory... Quitting", ); return mem; } -- cgit v1.2.3