Bläddra i källkod

Make the asmsh_log_perror() macro non variadic again ;)

Yann Weber 1 år sedan
förälder
incheckning
46924b5df0
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. 2
    2
      logger.h

+ 2
- 2
logger.h Visa fil

@@ -48,8 +48,8 @@
48 48
 	asmsh_log(_default_logger, ASMSH_ERR, __FUNCTION__, msg_args)
49 49
 #define asmsh_log_fatal(msg_args...) \
50 50
 	asmsh_log(_default_logger, ASMSH_FATAL, __FUNCTION__, msg_args)
51
-#define asmsh_log_perror(msg_args...) \
52
-	asmsh_log_error("%s : %s", msg_args, strerror(errno));
51
+#define asmsh_log_perror(msg) \
52
+	asmsh_log_error("%s : %s", msg, strerror(errno));
53 53
 
54 54
 #define ASMSH_LOG_BUFFER_ALLOC 4096
55 55
 

Loading…
Avbryt
Spara