You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.../common/ini.c
/* Return pointer to first non-whitespace char in given string. */
static char* lskip(const char* s)
{
while (*s && isspace(*s))
s++;
return (char*)s;
}
This cast loses the const qualifier in conversion.
Short summary (details in attached file):
gptp_034.txt
The text was updated successfully, but these errors were encountered: