diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-15 22:04:05 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-15 22:09:58 +0900 |
commit | 7ef72aefc6f1bf522e0c3f9f2afda5ff7851e35e (patch) | |
tree | eb51b70e78012113d274e3bedc67b6ebc7101c00 /registry/source | |
parent | 03f973ccefd07dbceaa4993206ee4f2f1296d321 (diff) |
Mark as const
Change-Id: Ic7ee570935b5d827dc01a483877ea5021da5abea
Diffstat (limited to 'registry/source')
-rw-r--r-- | registry/source/reflread.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/registry/source/reflread.cxx b/registry/source/reflread.cxx index 64e1de75460e..8c88e05a7254 100644 --- a/registry/source/reflread.cxx +++ b/registry/source/reflread.cxx @@ -33,8 +33,8 @@ #include <cstddef> -static sal_Char NULL_STRING[1] = { 0 }; -static sal_Unicode NULL_WSTRING[1] = { 0 }; +static const sal_Char NULL_STRING[1] = { 0 }; +static const sal_Unicode NULL_WSTRING[1] = { 0 }; const sal_uInt32 magic = 0x12345678; const sal_uInt16 minorVersion = 0x0000; |