]> sjero.net Git - wget/blobdiff - src/connect.c
[svn] Avoid explicit 64-bit constants; construct them by multiplication at
[wget] / src / connect.c
index 722f6a7a874af0acaf6c7894e9462c68f748980e..10f984061a94827e4ef202f8e70f76b1a4ffba24 100644 (file)
@@ -648,7 +648,7 @@ select_fd (int fd, double maxtime, int wait_for)
     wr = &fdset;
 
   tmout.tv_sec = (long) maxtime;
-  tmout.tv_usec = 1000000L * (maxtime - (long) maxtime);
+  tmout.tv_usec = 1000000 * (maxtime - (long) maxtime);
 
   do
     result = select (fd + 1, rd, wr, NULL, &tmout);