summaryrefslogtreecommitdiff
path: root/src/pcre2grep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pcre2grep.c')
-rw-r--r--src/pcre2grep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pcre2grep.c b/src/pcre2grep.c
index 851bb89..b54229b 100644
--- a/src/pcre2grep.c
+++ b/src/pcre2grep.c
@@ -2070,7 +2070,7 @@ if (rc == DDE_CHAR && *value != STDOUT_NL_CODE)
uint32_t max = utf? 0x0010ffffu : 0xffu;
if (*value > max)
{
- if (!callout)
+ if (!callout)
fprintf(stderr, "pcre2grep: Error in output text at offset %d: "
"code point greater than 0x%x is invalid\n", (int)(string - begin), max);
rc = DDE_ERROR;
@@ -2376,8 +2376,8 @@ while (length > 0)
if (value == STDOUT_NL_CODE)
{
memcpy(argsptr, STDOUT_NL, STDOUT_NL_LEN);
- argsptr += STDOUT_NL_LEN;
- }
+ argsptr += STDOUT_NL_LEN;
+ }
else if (utf && value > 127)
{
int n = ord2utf8(value);