diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-28 04:53:50 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-28 04:55:33 +0900 |
commit | eb6ab3bc045701e3d4b8751751700d8375f89fcc (patch) | |
tree | d84a2b1fd648d49e83fa19ed4018e9b705395556 /tools/source/zcodec | |
parent | 7673a08e7200227b9dbcb7ee8706064f55013c44 (diff) |
Mark as const
Change-Id: If20ac542f31dd650d6d1cc22ced618f73e1ce773
Diffstat (limited to 'tools/source/zcodec')
-rw-r--r-- | tools/source/zcodec/zcodec.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/source/zcodec/zcodec.cxx b/tools/source/zcodec/zcodec.cxx index 497662cf1315..8d23861c796e 100644 --- a/tools/source/zcodec/zcodec.cxx +++ b/tools/source/zcodec/zcodec.cxx @@ -35,7 +35,7 @@ #define GZ_COMMENT 0x10 /* bit 4 set: file comment present */ #define GZ_RESERVED 0xE0 /* bits 5..7: reserved */ -static int gz_magic[2] = { 0x1f, 0x8b }; /* gzip magic header */ +static const int gz_magic[2] = { 0x1f, 0x8b }; /* gzip magic header */ ZCodec::ZCodec( sal_uIntPtr nInBufSize, sal_uIntPtr nOutBufSize, sal_uIntPtr nMemUsage ) : mnCRC(0) |