Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/thirdparty/unrar/smallfn.cpp')
-rw-r--r--src/thirdparty/unrar/smallfn.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thirdparty/unrar/smallfn.cpp b/src/thirdparty/unrar/smallfn.cpp
index fe7cb1dc2..81259d02f 100644
--- a/src/thirdparty/unrar/smallfn.cpp
+++ b/src/thirdparty/unrar/smallfn.cpp
@@ -3,7 +3,7 @@
int ToPercent(int64 N1,int64 N2)
{
if (N2<N1)
- return(100);
+ return 100;
return ToPercentUnlim(N1,N2);
}
@@ -12,7 +12,7 @@ int ToPercent(int64 N1,int64 N2)
int ToPercentUnlim(int64 N1,int64 N2)
{
if (N2==0)
- return(0);
+ return 0;
return (int)(N1*100/N2);
}