summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-06-01 19:02:38 -0500
committerH.Merijn Brand <h.m.brand@xs4all.nl>2005-06-02 07:39:30 +0000
commita0288114f9bfa2566e353eba77114ea63b616631 (patch)
tree8c86c7a2a168301943e790fcdd612b20d47ea300 /malloc.c
parent1936d2a74fbc35dd0d6862386c9988d92bb8e6e0 (diff)
downloadperl-a0288114f9bfa2566e353eba77114ea63b616631.tar.gz
Quotes fixed, see also perl #36079
Message-ID: <20050602050238.GA4001@petdance.com> p4raw-id: //depot/perl@24666
Diffstat (limited to 'malloc.c')
-rw-r--r--malloc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/malloc.c b/malloc.c
index 3ed1689dbd..05c0528e39 100644
--- a/malloc.c
+++ b/malloc.c
@@ -1516,7 +1516,7 @@ Perl_malloc(register size_t nbytes)
|| (p->ov_next && PTR2UV(p->ov_next) < (1<<LOG_OF_MIN_ARENA)) ) {
dTHX;
PerlIO_printf(PerlIO_stderr(),
- "Unaligned `next' pointer in the free "
+ "Unaligned \"next\" pointer in the free "
"chain 0x%"UVxf" at 0x%"UVxf"\n",
PTR2UV(p->ov_next), PTR2UV(p));
}
@@ -1805,7 +1805,7 @@ getpages(MEM_SIZE needed, int *nblksp, int bucket)
# endif
}
#endif
- ; /* Finish `else' */
+ ; /* Finish "else" */
sbrked_remains = require - needed;
last_op = cp;
}
@@ -1899,9 +1899,9 @@ morecore(register int bucket)
}
}
if (t && *t) {
- write2("Unrecognized part of PERL_MALLOC_OPT: `");
+ write2("Unrecognized part of PERL_MALLOC_OPT: \"");
write2(t);
- write2("'\n");
+ write2("\"\n");
}
if (changed)
MallocCfg[MallocCfg_cfg_env_read] = 1;