Skip to content

Commit

Permalink
Fix: return default
Browse files Browse the repository at this point in the history
  • Loading branch information
dnzbk committed Feb 13, 2024
1 parent d5a8831 commit 7374ba4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion daemon/postprocess/Unpack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,7 @@ const char* UnpackController::DecodeSevenZipExitCode(int ec)
case SevenZipExitCodes::CanceledByUser:
return "User stopped the process";

default: "Unknown 7-Zip error";
default:
return "Unknown 7-Zip error";
};
}

0 comments on commit 7374ba4

Please sign in to comment.