Eliminate VC compiler warning.
authorAndy Polyakov <appro@openssl.org>
Sun, 6 Nov 2005 21:11:41 +0000 (21:11 +0000)
committerAndy Polyakov <appro@openssl.org>
Sun, 6 Nov 2005 21:11:41 +0000 (21:11 +0000)
apps/apps.c

index 5a05604579832bcf8a3126e80cd1f7a44f70a31f..fc15a74266a1ca3f62f13f121d5721aa8f3d5136 100644 (file)
@@ -2418,7 +2418,7 @@ double app_tminterval(int stop,int usertime)
                tmstop.u.LowPart   = now.dwLowDateTime;
                tmstop.u.HighPart  = now.dwHighDateTime;
 
-               ret = (tmstop.QuadPart - tmstart.QuadPart)*1e-7;
+               ret = (__int64)(tmstop.QuadPart - tmstart.QuadPart)*1e-7;
                }
 
        return (ret);