summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/dfxvideo/soft.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dfxvideo/soft.c b/plugins/dfxvideo/soft.c
index 3326ebc9..a59b37e3 100755
--- a/plugins/dfxvideo/soft.c
+++ b/plugins/dfxvideo/soft.c
@@ -1213,7 +1213,7 @@ static __inline int shl10idiv(int x, int y)
{
__int64 bi=x;
bi<<=10;
- return bi/y;
+ return (int)(bi/y);
}
#endif