mirror of
https://github.com/stefanberger/libtpms
synced 2026-08-12 21:35:50 +00:00
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:
parent
30a95c3c82
commit
55c0004468
@ -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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user