Skip to content

Commit

Permalink
Correct ifdef check for VER_UNKNOWN (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
fastcat authored Mar 29, 2020
1 parent d7b9e30 commit 011c77d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ zimme simon+github#AT#fridlund.email
ivoronin ivoronin#AT#gmail.com
KyleSanderson
vapier vapier#AT#gmail.com
fastcat fastcat#AT#gmail.com
2 changes: 1 addition & 1 deletion src/dllext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ static size_t ListFileHeader(wchar *wcs,Archive &Arc)

wcs += msprintf(wcs, L"\n%12ls: RAR %ls(v%d) -m%d -md=%d%s",St(MListCompInfo),
Format==RARFMT15 ? L"1.5":L"5.0",
#if RARVER_MAJOR > 5 || ( RARVER_MAJOR == 5 && RARVER_MINOR > 60 )
#if RARVER_MAJOR > 5 || ( RARVER_MAJOR == 5 && RARVER_MINOR >= 70 )
hd.UnpVer==VER_UNKNOWN ? 0 : hd.UnpVer,hd.Method,
#else
hd.UnpVer,hd.Method,
Expand Down

0 comments on commit 011c77d

Please sign in to comment.