diff options
| author | Ladislav Zezula <ladislav.zezula@avast.com> | 2022-04-19 07:26:00 +0200 | 
|---|---|---|
| committer | Ladislav Zezula <ladislav.zezula@avast.com> | 2022-04-19 07:26:00 +0200 | 
| commit | 1306240979a0cb83c16773b1a91d27f2182da61f (patch) | |
| tree | db6584e42a78b00672ba95bdf4b33b508300f448 | |
| parent | c925e4ffb0008a1e417b3fcd757a9c3e66e3b2cc (diff) | |
Minor fix
| -rw-r--r-- | src/pklib/explode.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pklib/explode.c b/src/pklib/explode.c index 1ee31fd..35210fb 100644 --- a/src/pklib/explode.c +++ b/src/pklib/explode.c @@ -150,7 +150,7 @@ static void GenDecodeTabs(  static void GenAscTabs(TDcmpStruct * pWork)  { -    unsigned short * pChCodeAsc = &ChCodeAsc[0xFF]; +    const unsigned short * pChCodeAsc = &ChCodeAsc[0xFF];      unsigned int  acc, add;      unsigned short count;  | 
