diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-22 20:57:11 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-22 21:03:55 +0900 |
commit | bddd4d45989067e58589519c497e03ff443094e9 (patch) | |
tree | 41e4eadda19dab42bd976115eef7562b36e287eb /xmlsecurity | |
parent | fb7b24dc5affb4f29f61a8716c97370951ccba80 (diff) |
Mark as const
Change-Id: I2746b92b1360c3c181879a81f653c44ef609f351
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/xmlsec/nss/secerror.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlsecurity/source/xmlsec/nss/secerror.cxx b/xmlsecurity/source/xmlsec/nss/secerror.cxx index cea78a8dd0e1..eab5b5ebb9fd 100644 --- a/xmlsecurity/source/xmlsec/nss/secerror.cxx +++ b/xmlsecurity/source/xmlsec/nss/secerror.cxx @@ -51,7 +51,7 @@ const ErrDesc allDesc[] = { const char * getCertError(PRErrorCode errNum) { - static char sEmpty[] = ""; + static const char sEmpty[] = ""; const int numDesc = SAL_N_ELEMENTS(allDesc); for (int i = 0; i < numDesc; i++) { |