summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2007-01-16 00:26:28 +0000
committerwtchang%redhat.com <devnull@localhost>2007-01-16 00:26:28 +0000
commit2b4030dc7eda549053b9c1fe5511eeed931dec0d (patch)
tree688a17b3d536aa9ab247ebf086ebe3ec3e1812b9
parent875c43ae7ef9354335c671f46c665eeb4256031c (diff)
downloadnspr-hg-2b4030dc7eda549053b9c1fe5511eeed931dec0d.tar.gz
Bug 365997: declared the variable 'dst' as pointer to const.
Tag: NSPRPUB_PRE_4_2_CLIENT_BRANCH
-rw-r--r--pr/src/misc/prtime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pr/src/misc/prtime.c b/pr/src/misc/prtime.c
index dea5ed38..dcc1c9bd 100644
--- a/pr/src/misc/prtime.c
+++ b/pr/src/misc/prtime.c
@@ -823,7 +823,7 @@ static const DSTParams dstParams[2] = {
PR_IMPLEMENT(PRTimeParameters)
PR_USPacificTimeParameters(const PRExplodedTime *gmt)
{
- DSTParams * dst;
+ const DSTParams *dst;
PRTimeParameters retVal;
PRExplodedTime st;