Fix compile error on cygwin

Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com>
Acked-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
This commit is contained in:
Stefan Berger 2014-01-07 21:32:06 -05:00 committed by Corey Bryant
parent 30a95c3c82
commit 55c0004468

View File

@ -391,7 +391,7 @@ static unsigned char *TPMLIB_GetPlaintext(const char *stream,
start = strstr(stream, starttag);
if (start) {
start += strlen(starttag);
while (isspace(*start))
while (isspace((int)*start))
start++;
end = strstr(start, endtag);
if (end) {