summaryrefslogtreecommitdiff
path: root/lib/Support/regengine.inc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Support/regengine.inc')
-rw-r--r--lib/Support/regengine.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/regengine.inc b/lib/Support/regengine.inc
index 62d8c267f22..41787aff124 100644
--- a/lib/Support/regengine.inc
+++ b/lib/Support/regengine.inc
@@ -1013,7 +1013,7 @@ pchar(int ch)
{
static char pbuf[10];
- if (isprint(ch) || ch == ' ')
+ if (isPrint(ch) || ch == ' ')
(void)snprintf(pbuf, sizeof pbuf, "%c", ch);
else
(void)snprintf(pbuf, sizeof pbuf, "\\%o", ch);