I get this warning while compiling my c-code (in c89/90), and I´m lost how to fix that. can anybody help?
edge_target is a pointer, and strsep returns a pointer, it should be all ok, or am I missing something?
warning: assignment makes pointer from integer without a cast [enabled by default]
char* edge_target;
while ((edge_target = strsep(&splitme, " ") ) != NULL)