From 57cba80ccd1f62287a6b80f4c5c52689f2b2db0f Mon Sep 17 00:00:00 2001 From: Kevin B Kenny Date: Mon, 13 Nov 2006 22:39:56 +0000 Subject: Silence a compiler warining about presenting a volatile pointer to 'memset' --- ChangeLog | 7 +++++++ generic/tclThreadStorage.c | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index c9d31d6..b73d48f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-11-13 Kevin Kenny + + * generic/tclThreadStorage.c (Tcl_InitThreadStorage, + Tcl_FinalizeThreadStorage): Silence a compiler warning about + presenting a volatile pointer to 'memset'. + + 2006-11-13 Don Porter * generic/tclIO.c: When [gets] on a binary channel needs to use diff --git a/generic/tclThreadStorage.c b/generic/tclThreadStorage.c index c0ab032..9f25c32 100644 --- a/generic/tclThreadStorage.c +++ b/generic/tclThreadStorage.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadStorage.c,v 1.11 2006/11/13 08:23:09 das Exp $ + * RCS: @(#) $Id: tclThreadStorage.c,v 1.12 2006/11/13 22:39:56 kennykb Exp $ */ #include "tclInt.h" @@ -299,7 +299,7 @@ TclInitThreadStorage(void) * We also initialize the cache. */ - memset(&threadStorageCache, 0, + memset((void*) &threadStorageCache, 0, sizeof(ThreadStorage) * STORAGE_CACHE_SLOTS); /* @@ -529,7 +529,7 @@ TclFinalizeThreadStorage(void) * Clear out the thread storage cache as well. */ - memset(&threadStorageCache, 0, + memset((void*) &threadStorageCache, 0, sizeof(ThreadStorage) * STORAGE_CACHE_SLOTS); /* -- cgit v0.12