diff options
Diffstat (limited to 'win32/perlhost.h')
-rw-r--r-- | win32/perlhost.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/perlhost.h b/win32/perlhost.h index e52ba6d419..a645328325 100644 --- a/win32/perlhost.h +++ b/win32/perlhost.h @@ -585,7 +585,7 @@ public: |FORMAT_MESSAGE_FROM_SYSTEM, NULL, dwErr, 0, (char *)&sMsg, 1, NULL); if (0 < dwLen) { - while (0 < dwLen && isspace(sMsg[--dwLen])) + while (0 < dwLen && isSPACE(sMsg[--dwLen])) ; if ('.' != sMsg[dwLen]) dwLen++; |