From 3c43b78e774434fe397968bfef463da2da801c83 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Tue, 27 Oct 1998 00:43:27 +0000 Subject: [PATCH] eliminated warning --- src/ca/access.c | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/src/ca/access.c b/src/ca/access.c index afba3f77f..458c0f202 100644 --- a/src/ca/access.c +++ b/src/ca/access.c @@ -99,6 +99,9 @@ /************************************************************************/ /* * $Log$ + * Revision 1.106 1998/09/25 00:20:56 jhill + * fixed warnings + * * Revision 1.105 1998/09/24 21:10:38 jhill * o test routine added * o allow large PV names @@ -472,7 +475,10 @@ const void *pext * if present (this avoids messages from purify) */ { - static nullBuff[32]; + /* + * static variables are initialized to zero + */ + static char nullBuff[32]; unsigned n; n = extsize-actualextsize; @@ -568,7 +574,10 @@ const void *pext) * if present (this avoids messages from purify) */ { - static nullBuff[32]; + /* + * static variables are initialized to zero + */ + static char nullBuff[32]; unsigned n; n = extsize-actualextsize;