diff options
author | Karl Williamson <public@khwilliamson.com> | 2013-01-06 22:49:05 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2013-01-11 11:50:35 -0700 |
commit | b67d718a3a2383d6737032d9ab26efd2a0ba2d9b (patch) | |
tree | 7a7e7c072585945049ff8c19a97d3bbfc0b60a95 /dquote_static.c | |
parent | 80f4111be994e38b20d72125cb8851f563eeeba9 (diff) | |
download | perl-b67d718a3a2383d6737032d9ab26efd2a0ba2d9b.tar.gz |
dquote_static.c: White-space only; no code changes
This properly indents a newly-formed block
Diffstat (limited to 'dquote_static.c')
-rw-r--r-- | dquote_static.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dquote_static.c b/dquote_static.c index 1ab4ebd714..9293b7bdb7 100644 --- a/dquote_static.c +++ b/dquote_static.c @@ -162,12 +162,12 @@ S_grok_bslash_o(pTHX_ char **s, UV *uv, const char** error_msg, return FALSE; } else if (output_warning) { - Perl_ck_warner(aTHX_ packWARN(WARN_DIGIT), - /* diag_listed_as: Non-octal character '%c'. Resolved as "%s" */ - "Non-octal character '%c'. Resolved as \"\\o{%.*s}\"", - *(*s + numbers_len), - (int) numbers_len, - *s); + Perl_ck_warner(aTHX_ packWARN(WARN_DIGIT), + /* diag_listed_as: Non-octal character '%c'. Resolved as "%s" */ + "Non-octal character '%c'. Resolved as \"\\o{%.*s}\"", + *(*s + numbers_len), + (int) numbers_len, + *s); } } |