summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorHugo van der Sanden <hv@crypt.org>2021-09-10 17:17:59 +0100
committerHugo van der Sanden <hv@crypt.org>2021-09-10 17:20:03 +0100
commit170944218d18492ce2141ac45166c62ec99ba1a7 (patch)
treea099149ae0c47852490fd9eb85439063cf2a9234 /sv.c
parent7731dc3c70b99105f6680e0e6d3f6f3242fda941 (diff)
downloadperl-170944218d18492ce2141ac45166c62ec99ba1a7.tar.gz
Indentation fix in sv_gets() (whitespace only)
gcc-11.2 correctly complains about this. [-Wmisleading-indentation]
Diffstat (limited to 'sv.c')
-rw-r--r--sv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index 8d66500923..fa8cf01194 100644
--- a/sv.c
+++ b/sv.c
@@ -8865,8 +8865,8 @@ Perl_sv_gets(pTHX_ SV *const sv, PerlIO *const fp, I32 append)
thats_really_all_folks:
if (shortbuffered)
cnt += shortbuffered;
- DEBUG_P(PerlIO_printf(Perl_debug_log,
- "Screamer: quitting, ptr=%" UVuf ", cnt=%" IVdf "\n",PTR2UV(ptr),(IV)cnt));
+ DEBUG_P(PerlIO_printf(Perl_debug_log,
+ "Screamer: quitting, ptr=%" UVuf ", cnt=%" IVdf "\n",PTR2UV(ptr),(IV)cnt));
PerlIO_set_ptrcnt(fp, (STDCHAR*)ptr, cnt); /* put these back or we're in trouble */
DEBUG_P(PerlIO_printf(Perl_debug_log,
"Screamer: end: FILE * thinks ptr=%" UVuf ", cnt=%" IVdf ", base=%" UVuf