expected ‘int * (*)()’ but argument is of type ‘int’ 错误

发布于 2022-09-03 15:13:21 字数 1637 浏览 12 评论 0

今天写了个log函数,如下(定义在logger.c中, logger.h中有对应的声明)

    void Logger(int priority, int errno, char* fmt, ...)
    {
        char priVc[][8] = {"Emerg", "Alert", "Crit", "Error", "Warning", "Notice", "Info", "Debug"};
    
        char* priPt = priority < 0 || priority >= sizeof(priVc)/sizeof(priVc[0]) ?
            "Unknow priority!" : priVc[priority];
    
        char *errMsg = errno <= 0 ? NULL : strerror(errno);
    
        {
            va_list argPt;
            unsigned Ln;
    
            va_start(argPt, fmt);  //now argPt is point to mylog's param:...
            Ln = snprintf(LogLastMsg, sizeof(LogLastMsg), "[mylog...][%s]: ", priPt);
            Ln += vsnprintf(LogLastMsg + Ln, sizeof(LogLastMsg) - Ln, fmt, argPt);
            if (NULL != errMsg)
            {
                Ln += snprintf(LogLastMsg + Ln, sizeof(LogLastMsg) - Ln, "%d:%s", errno, errMsg);
            }
            va_end(argPt);
        }
        //choose the log which should be show on stderr
        if (priority < LOG_ERR || priority <= Log2Stderr)
        {
            fprintf(stderr, "%s", LogLastMsg);
        }
    
        //always to syslog
        syslog(priority, "%s", LogLastMsg);
    
        if (priority <= LOG_ERR)
        {
            exit(-1);
        }
        return ;
    }

然后在main函数中调用:

Logger(LOG_INFO, 3, "httpd start...\n"); 

接着就报错了

 expected ‘int * (*)()’ but argument is of type ‘int’

把logger.c logger.h 以及main.c中调用的Logger都替换成my_log,也没有用。
int *(*)()应该是函数指针把,Logger的第二个参数怎么回事函数指针呢,好奇怪。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

书信已泛黄 2022-09-10 15:13:21

找到原因了。
errno 在errno.h中被定义成宏了。 不能做形式参数,否则会被变成int )型

冰魂雪魄 2022-09-10 15:13:21

完整的代码是怎样的哦?编译报的错,不是就是说声明的参数类型是个指向函数的指针,但是你传递的是个int类型的实参吗?你把完整代码贴出来看看,我试试。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文