summaryrefslogtreecommitdiffstats
path: root/generic/tclPathObj.c
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2007-04-17 14:49:52 (GMT)
committerdkf <dkf@noemail.net>2007-04-17 14:49:52 (GMT)
commitc4b6ad1ceb3dd7475f09d4af2f35f31c2ac0d65b (patch)
treed38a0997ec4141e501a5f19512dfe1445d8c4404 /generic/tclPathObj.c
parent6b4e4cde646d4f2d4569427d3363a5212b7882c9 (diff)
downloadtcl-c4b6ad1ceb3dd7475f09d4af2f35f31c2ac0d65b.zip
tcl-c4b6ad1ceb3dd7475f09d4af2f35f31c2ac0d65b.tar.gz
tcl-c4b6ad1ceb3dd7475f09d4af2f35f31c2ac0d65b.tar.bz2
Eliminate use of (VOID*) casts when calling memset or memcpy.
FossilOrigin-Name: 45b49489451e09193f60023f5244b0d73a26880e
Diffstat (limited to 'generic/tclPathObj.c')
-rw-r--r--generic/tclPathObj.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclPathObj.c b/generic/tclPathObj.c
index e49141f..35a6e37 100644
--- a/generic/tclPathObj.c
+++ b/generic/tclPathObj.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclPathObj.c,v 1.59 2007/04/10 14:47:17 dkf Exp $
+ * RCS: @(#) $Id: tclPathObj.c,v 1.60 2007/04/17 14:49:53 dkf Exp $
*/
#include "tclInt.h"
@@ -1651,8 +1651,8 @@ Tcl_FSGetTranslatedStringPath(
const char *result, *orig;
orig = Tcl_GetStringFromObj(transPtr, &len);
- result = (char*) ckalloc((unsigned)(len+1));
- memcpy((VOID*) result, (VOID*) orig, (size_t) (len+1));
+ result = (char *) ckalloc((unsigned)(len+1));
+ memcpy(result, orig, (size_t) (len+1));
TclDecrRefCount(transPtr);
return result;
}