summaryrefslogtreecommitdiffstats
path: root/generic/tclAlloc.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-14 08:26:06 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-05-14 08:26:06 (GMT)
commitfce7223c2cdcec792e2053c1e0a4c442331fc776 (patch)
tree678acacedb8ab68f7b04f677fbf2462d10599208 /generic/tclAlloc.c
parent02fe51ee005699ec58f87770828ff2da464faaac (diff)
downloadtcl-fce7223c2cdcec792e2053c1e0a4c442331fc776.zip
tcl-fce7223c2cdcec792e2053c1e0a4c442331fc776.tar.gz
tcl-fce7223c2cdcec792e2053c1e0a4c442331fc776.tar.bz2
Backout the "dullest commit ever" (not my words ....). It breaks the build.
JN: Many of those changes are actually good, but there are too many changes to be able to search for a bug somewhere. Feel free to re-apply, after assuring it's really only whitespace changes. (my advise: do that after 9.0b2)
Diffstat (limited to 'generic/tclAlloc.c')
-rw-r--r--generic/tclAlloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclAlloc.c b/generic/tclAlloc.c
index 9a7dcba..b52d1b3 100644
--- a/generic/tclAlloc.c
+++ b/generic/tclAlloc.c
@@ -305,7 +305,7 @@ TclpAlloc(
#endif
Tcl_MutexUnlock(allocMutexPtr);
- return (void *)(overPtr + 1);
+ return (void *)(overPtr+1);
}
/*
@@ -581,7 +581,7 @@ TclpRealloc(
#endif
Tcl_MutexUnlock(allocMutexPtr);
- return (void *)(overPtr + 1);
+ return (void *)(overPtr+1);
}
maxSize = (size_t)1 << (i+3);
expensive = 0;
@@ -695,7 +695,7 @@ mstats(
#undef TclpAlloc
void *
TclpAlloc(
- size_t numBytes) /* Number of bytes to allocate. */
+ size_t numBytes) /* Number of bytes to allocate. */
{
return malloc(numBytes);
}