警告:格式的参数太多了

时间:2014-11-24 16:41:05

标签: c compiler-warnings

#include<stdio.h>
#include<errno.h>
#include<error.h>
#include<stdlib.h>

#define clean_errno() (errno == 0 ? "None" : strerror(errno))
#define DEBUG_ERROR(M,...) fprintf(stderr, "[ERROR] (%s:%d: (error: %s)) M \n", __FILE__, __LINE__, clean_errno(),##__VA_ARGS__)

int main()
{
   int test =10;
   DEBUG_ERROR("Test variable %s = %d.\n","test",test);
   return 0;
}

有关如何使用调试宏修复以下警告的任何想法......

warn.c:12:4:警告:格式参数太多[-Wformat-extra-args]

1 个答案:

答案 0 :(得分:3)

你的宏应该是:

#define DEBUG_ERROR(M,...) fprintf(stderr, "[ERROR] (%s:%d: (error: %s)) " M " \n", __FILE__, __LINE__, clean_errno(),##__VA_ARGS__)

请注意,M现在不在引号中。