summaryrefslogtreecommitdiff
path: root/dump.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-08-06 09:58:46 -0600
committerKarl Williamson <khw@cpan.org>2018-08-06 10:02:12 -0600
commitd342516410da8af9d1824e50179d7d6ff3c7ba95 (patch)
treeee7705cdfe28373dbd08ce1e82d1a4225ab03b0e /dump.c
parentf8db7d5b698ee09de200fdee909d6f4ea719ffac (diff)
downloadperl-d342516410da8af9d1824e50179d7d6ff3c7ba95.tar.gz
dump.c: Fix space before tabs
These generate git warnings
Diffstat (limited to 'dump.c')
-rw-r--r--dump.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dump.c b/dump.c
index 8859f1df8c..98a307e038 100644
--- a/dump.c
+++ b/dump.c
@@ -1390,9 +1390,9 @@ Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32
PERL_ARGS_ASSERT_DO_MAGIC_DUMP;
for (; mg; mg = mg->mg_moremagic) {
- Perl_dump_indent(aTHX_ level, file,
+ Perl_dump_indent(aTHX_ level, file,
" MAGIC = 0x%" UVxf "\n", PTR2UV(mg));
- if (mg->mg_virtual) {
+ if (mg->mg_virtual) {
const MGVTBL * const v = mg->mg_virtual;
if (v >= PL_magic_vtables
&& v < PL_magic_vtables + magic_vtable_max) {
@@ -1728,7 +1728,7 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo
sv_catpvs(d, "PADTMP,");
append_flags(d, flags, first_sv_flags_names);
if (flags & SVf_ROK) {
- sv_catpvs(d, "ROK,");
+ sv_catpvs(d, "ROK,");
if (SvWEAKREF(sv)) sv_catpvs(d, "WEAKREF,");
}
if (flags & SVf_IsCOW && type != SVt_PVHV) sv_catpvs(d, "IsCOW,");