conflicting types for xxxx错误 (转)

pretty_print.c:31: error: conflicting types for ‘vmi_print_hex’

libvmi.h:749: note: previous declaration of ‘vmi_print_hex’ was here

make[3]: *** [libvmi_la-pretty_print.lo] Fehler 1

make[3]: Leaving directory `/usr/local/src/libvmi-0.8/libvmi‘

make[2]: *** [all-recursive] Fehler 1

make[2]: Leaving directory `/usr/local/src/libvmi-0.8/libvmi‘

make[1]: *** [all-recursive] Fehler 1

make[1]: Leaving directory `/usr/local/src/libvmi-0.8‘

make: *** [all] Fehler 2

解决方案:

libvmi/libvmi.h:void vmi_print_hex (unsigned char *data, unsigned long length);和

libvmi/pretty_print.c:void vmi_print_hex (unsigned char *data, size_t length)

中的数据类型改为一致的即可。

见其论坛:https://groups.google.com/forum/?fromgroups#!topic/vmitools/w76m93KevFg

常见此类问题的原因如下(引)

错误:
test.c:22: error: conflicting types for ‘urlencode‘
test.c:18: error: previous implicit declaration of ‘urlencode‘ was here

原因一:
原来是因为没有先做函数声明,而函数位于main()之后。
在main函数前声明了函数原型后,一切ok.

原因二:

头文件的被循环引用,在引用时考虑清楚包含顺序

原因三:

头文件声明和定义参数稍有不同

例:

头文件中声明 void Hanlder(const char * buf);

在定义时写作 void Hanlder(char * buf);

这是就会发生conflicting types for 错误问题

时间: 2024-11-03 21:12:22

conflicting types for xxxx错误 (转)的相关文章

编译器出现conflicting types for 某某的错误原因总结

直译就是xxxx 发生了一种冲突!比如今天发现的这个错误,实属低级! 本次错误的原因是:函数没有先声明,便写在了主函数后面!应该是先声明,后定义,如果只有定义,则定义必须写在主函数上方.通过查资料,有总结了一些常见引起这类错误的原因: 1.因为没有先做函数声明,而函数位于main()之后. 2.头文件被循环引用,在引用时考虑清楚包含顺序 3.头文件声明和定义参数稍有不同,例: 头文件中声明 void Hanlder(const char * buf); 在定义时写作 void Hanlder(c

conflicting types for ‘方法名’ 的错误

将main()的实现写在drawShapes(),drawCircle(),drawRectangle()...之前. 结果编译的时候出现了  conflicting types for "方法名"的错误.故到网上查找答案,发现在这里需要严格按照函数出现的先后顺序才能成功编译,也就是main()要定义在最后,因为它是执行入口,它里边用到的所有对象,所有方法都需要按照顺序定义在它之前,如果在这些方法里边还用到了方法,那么当然还要将其他方法定义在这些方法之前.

Error:Cannot compile Groovy files: no Groovy library is defined for module 'xxxx' 错误处理

出现 Error:Cannot compile Groovy files: no Groovy library is defined for module 'xxxx' 只要在 project structure 中的modules中左上角的 + 号,然后找到groovy添加即可! 具体可参考: http://stackoverflow.com/questions/43450683/errorcannot-compile-groovy-files-no-groovy-library-is-def

mysql [1044/1045] Access denied for user 'root'@'localhost' to database 'xxxx' 错误

数据库迁移的时候报了这么个错 但是就很疑惑 我权限都给了啊 用户名密码也对啊 网上找了一堆方案没一个管用 后面再数据库使用root 重新赋权远程账户测试时多留意了一眼 发现了端倪 我在赋权的时候赋给了  'root'@'%' ,而这里报错的是  'root'@'localhost' 然后在重新使用 root 权限赋权 'root'@'localhost' 就一切OK了 GRANT ALL PRIVILEGES ON *.* TO 'user'@'localhost' IDENTIFIED BY

网页提示[Not allowed to load local resource: file://XXXX]错误

网页通过http 访问时, 点击打开文件的link.在Chrome 中会报 Not allowed to load local resource: file// XXXX 的错误 <!--Add by oscar999--> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> New Document <

conflicting types for。。。。。。

这个是在编译的时候的报错,那么如图: 原因如下: 1.因为没有先做函数的声明,然后就在其它函数了或者main函数里       进行调用. 解决办法:       在main函数前声明了函数原型后,就ok了.   2.头文件的被循环引用,在引用时考虑清楚包含顺序   3.头文件声明和定义参数稍有不同  头文件中声明 void Fuc(constchar * buf);  在定义时写作 void Fuc(char *buf);  这是就会发生conflictingtypes for 等类似的错误问

windows ipython 出现ImportError: No module named XXXX错误

IPython是一个更好的交互环境,是程序员做数据挖掘的好帮手,但是在Windows下运行IPython可能会出现 <code>ImportError: No module named pickleshare ImportError: No module named simplegeneric ImportError: No module named xxx</code> 提示没有模块XXX 解决方法就是 pip install XXXX Just pip install it.^

No identifier specified for entity: XXXX 错误

在运行项目的时候报了下面的错误: by: org.hibernate.AnnotationException: No identifier specified for entity: com.example1.demo1.Entity.User at org.hibernate.cfg.InheritanceState.determineDefaultAccessType(InheritanceState.java:266) ~[hibernate-core-5.2.17.Final.jar:5

GCC 常见错误解析

1GCC 常见错误解析一.错误类型第一类∶C 语法错误错误信息∶文件source.c 中第n 行有语法错误(syntex errror).这种类型的错误,一般都是 C 语言的语法错误,应该仔细检查源代码文件中第n 行及该行之前的程序,有时也需要对该文件所包含的头文件进行检查.有些情况下,一个很简单的语法错误,gcc 会给出一大堆错误,此时要保持清醒的头脑,不要被其吓倒,必要的时候再参考一下C 语言的基本教材.第二类∶头文件错误错误信息∶找不到头文件head.h(Can not find incl