summaryrefslogtreecommitdiffstats
path: root/generic/tclAlloc.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-08-11 05:39:08 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-08-11 05:39:08 (GMT)
commitd73c6dbd81c0537e3d6df60dc145af1b6539d6d2 (patch)
tree21937654dd120ae841ab47a05d1d792b30ffc187 /generic/tclAlloc.c
parent36d06e1e0b240999e478c750f746a86dbd63caae (diff)
downloadtcl-d73c6dbd81c0537e3d6df60dc145af1b6539d6d2.zip
tcl-d73c6dbd81c0537e3d6df60dc145af1b6539d6d2.tar.gz
tcl-d73c6dbd81c0537e3d6df60dc145af1b6539d6d2.tar.bz2
Eliminate many unnecessary type-casts, mostly (size_t) when value is already size_t or int
Diffstat (limited to 'generic/tclAlloc.c')
-rw-r--r--generic/tclAlloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclAlloc.c b/generic/tclAlloc.c
index 6187ce2..39b9395 100644
--- a/generic/tclAlloc.c
+++ b/generic/tclAlloc.c
@@ -604,7 +604,7 @@ TclpRealloc(
if (maxSize < numBytes) {
numBytes = maxSize;
}
- memcpy(newPtr, oldPtr, (size_t) numBytes);
+ memcpy(newPtr, oldPtr, numBytes);
TclpFree(oldPtr);
return newPtr;
}