WebRequest.cpp:292: error: cast from `char*, to `int, loses precision
Solution: Change - ( (int)contentStart - (int)responseString ); to - (int)(contentStart - responseString);
Log in to post a comment.