From b01f592a249afd6d0cc9a3fb48ee057f5077194b Mon Sep 17 00:00:00 2001 From: Marvin Blum <6115423+Kugelschieber@users.noreply.github.com> Date: Wed, 9 Jun 2021 14:29:31 +0200 Subject: [PATCH] Fixed define. --- src/log.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/log.h b/src/log.h index 8923468..8813834 100644 --- a/src/log.h +++ b/src/log.h @@ -1,8 +1,8 @@ #ifndef VKE_LOG_H #define VKE_LOG_H -#define VKE_LOG_DEBUG = 0 -#define VKE_LOG_ERROR = 1 +#define VKE_LOG_DEBUG 0 +#define VKE_LOG_ERROR 1 // Sets the global log level (VKE_LOG_DEBUG by default). void vkeSetLogLevel(int level);