I'm trying to compile some C++ code and I'm getting one error that says:
Empty Character Constant. I know that's ' ' without anything in it but how do I correct this? I get many other errors when I remove it or add something in it.
the line looks something like this:
memset(XXX_addr .sin_zero, ' ', sizeof XXX_addr.sin_ze ro);
Any suggestions?
Empty Character Constant. I know that's ' ' without anything in it but how do I correct this? I get many other errors when I remove it or add something in it.
the line looks something like this:
memset(XXX_addr .sin_zero, ' ', sizeof XXX_addr.sin_ze ro);
Any suggestions?
Comment