Hello,
I am getting a bunch of strange warnings with set variables.
Example:
qedit.c line 59:
Code:
qedit.c:59:9: warning: variable ‘buf3’ set but not used [-Wunused-but-set-variab le]
char *buf3;
^
^ This is repeated about 10 - 15 times with different variables.
Now you scroll down a few lines and you see buf3 is defined and used:
Code:
buf3 = two_arguments(argument, buf1, buf2);
Now I don't know if they just want me to actually use buf3 in the code. I could use buf1 instead. What do you guys think?