]> git.sesse.net Git - vlc/blobdiff - modules/access/ftp.c
Remove I64C as well
[vlc] / modules / access / ftp.c
index c171b71d35e13ea41b3a6d9e7b26677547e272bb..36a49c61082d70f87e57e0172e3ebbbaf74d21a5 100644 (file)
@@ -549,7 +549,7 @@ static int Control( access_t *p_access, int i_query, va_list args )
         case ACCESS_GET_PTS_DELAY:
             pi_64 = (int64_t*)va_arg( args, int64_t * );
             var_Get( p_access, "ftp-caching", &val );
-            *pi_64 = (int64_t)var_GetInteger( p_access, "ftp-caching" ) * I64C(1000);
+            *pi_64 = (int64_t)var_GetInteger( p_access, "ftp-caching" ) * INT64_C(1000);
             break;
 
         /* */