标签: c compiler-warnings c89 strsep
我在编译我的c代码时遇到了这个警告(在c89 / 90中),但我失去了解决这个问题的方法。有人可以帮忙吗?
edge_target是一个指针,strsep返回一个指针,它应该都可以,或者我错过了什么?
警告:赋值来自整数的指针,没有强制转换[默认启用]
char* edge_target; while ((edge_target = strsep(&splitme, " ") ) != NULL)