Sorry but
The following solution of warning 4101 is wrong:
----------------------------------
main.c(831):error C4101: unreferenced local variable

solution: comment out
int fd
----------------------------------
Can not comment out - may be needed

Solution:
#pragma warning(disable : 4101)
Or
int fd;
UNREFERENCED_PARAMETER(fd);
Where
#define UNREFERENCED_PARAMETER(P) (P)

Kind regards
Jerker B�ck



_______________________________________________
Make-w32 mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/make-w32

Reply via email to