diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-18 22:00:57 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-18 22:00:57 (GMT) |
commit | 2b41844782e22787bbd8b88ba36bf09ee9f09be0 (patch) | |
tree | 516cef05fc4d9521596c6e6e1b007850d985ba7e /generic/tclThreadAlloc.c | |
parent | b667daf155374f8d2ee36c77df720faa3d59f175 (diff) | |
download | tcl-2b41844782e22787bbd8b88ba36bf09ee9f09be0.zip tcl-2b41844782e22787bbd8b88ba36bf09ee9f09be0.tar.gz tcl-2b41844782e22787bbd8b88ba36bf09ee9f09be0.tar.bz2 |
Avoid using 'new' as an identifier.
Diffstat (limited to 'generic/tclThreadAlloc.c')
-rwxr-xr-x | generic/tclThreadAlloc.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/generic/tclThreadAlloc.c b/generic/tclThreadAlloc.c index 2cde913..52abdff 100755 --- a/generic/tclThreadAlloc.c +++ b/generic/tclThreadAlloc.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadAlloc.c,v 1.22 2007/06/29 03:17:05 das Exp $ + * RCS: @(#) $Id: tclThreadAlloc.c,v 1.23 2007/11/18 22:00:57 dkf Exp $ */ #include "tclInt.h" @@ -426,7 +426,7 @@ TclpRealloc( { Cache *cachePtr = TclpGetAllocCache(); Block *blockPtr; - void *new; + void *newPtr; size_t size, min; int bucket; @@ -475,15 +475,15 @@ TclpRealloc( * Finally, perform an expensive malloc/copy/free. */ - new = TclpAlloc(reqSize); - if (new != NULL) { + newPtr = TclpAlloc(reqSize); + if (newPtr != NULL) { if (reqSize > blockPtr->blockReqSize) { reqSize = blockPtr->blockReqSize; } - memcpy(new, ptr, reqSize); + memcpy(newPtr, ptr, reqSize); TclpFree(ptr); } - return new; + return newPtr; } /* |