From c1b44240d731e89c38e172b9ea30560e8dd338aa Mon Sep 17 00:00:00 2001 From: Kilty McGowan Date: Mon, 5 Jun 2023 05:02:38 -0700 Subject: [PATCH] Remove trailing whitespace --- llama-util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llama-util.h b/llama-util.h index 195cb46ea..4f8a4296a 100644 --- a/llama-util.h +++ b/llama-util.h @@ -410,7 +410,7 @@ struct llama_buffer { int result = posix_memalign((void **) &addr, getpagesize(), len); if (result == 0) { memset(addr, 0, len); - } + } else { addr = NULL; }