From 520271db3fbf7f0cf488322a024c0f2f3cfecdc9 Mon Sep 17 00:00:00 2001 From: Clement Sibille Date: Mon, 20 May 2024 23:08:52 +0900 Subject: Remove LOG0 macros Now LOG can be used in all cases --- src/lisiblestd/vec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lisiblestd/vec.h') diff --git a/src/lisiblestd/vec.h b/src/lisiblestd/vec.h index 6592bc4..3829798 100644 --- a/src/lisiblestd/vec.h +++ b/src/lisiblestd/vec.h @@ -57,7 +57,7 @@ new_capacity * sizeof(T)); \ if (!vec->data) { \ /* TODO maybe improve that error handling? */ \ - LOG0_ERROR("Vec reallocation failed, no memory left"); \ + LOG_ERROR("Vec reallocation failed, no memory left"); \ abort(); \ } \ vec->capacity = new_capacity; \ -- cgit v1.2.3