首页 > 代码库 > c语言warning总结
c语言warning总结
1、function declaration isn’t a prototype
括号中无参数,也要加void
2、array subscript is above array bounds
数组下标大于数组边界
例如:
#define LOCKNET_KEY_LEN 16
#define KEY_LEN 128
UINT8 signHex128[LOCKNET_KEY_LEN] = {0};
zCtrm_Bytes2String(signHex128+KEY_LEN-LOCKNET_KEY_LEN, signtext, LOCKNET_KEY_LEN);
通过看这个waring,看到代码里面的错误,不然这种越界还不知道什么时候就爆发了。
3、pointer targets in passing argument 3 of ‘mpi_read_string’ differ in signedness
第3个参数与‘mpi_read_string’函数中第三个参数类型不一致
4、pointer targets in assignment differ in signedness
参数不一致
5、passing argument 1 of ‘ConvertToBigEndian’ from incompatible pointer type
指针类型不一致
c语言warning总结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。