summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtchang%redhat.com <devnull@localhost>2007-01-16 00:24:09 +0000
committerwtchang%redhat.com <devnull@localhost>2007-01-16 00:24:09 +0000
commit849dfc279080a8810dd5d7b5c405f2b88d4760fa (patch)
tree688a17b3d536aa9ab247ebf086ebe3ec3e1812b9
parent2e9fcb54a55dde00439f1ef69d12d6c541d73dba (diff)
downloadnspr-hg-849dfc279080a8810dd5d7b5c405f2b88d4760fa.tar.gz
Bug 365997: declared the variable 'dst' as pointer to const.
-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;