Explorar el Código

fix warning UIDevice+VLC

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Pierre SAGASPE hace 10 años
padre
commit
f1fcde6897
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Sources/UIDevice+VLC.m

+ 1 - 1
Sources/UIDevice+VLC.m

@@ -60,7 +60,7 @@
         NSString *totalFreeSize = [NSByteCountFormatter stringFromByteCount:[totalFreeSpace longLongValue] countStyle:NSByteCountFormatterCountStyleFile];
         APLog(@"Memory Capacity of %@ with %@ Free memory available.", totalSize, totalFreeSize);
     } else
-        APLog(@"Error Obtaining System Memory Info: Domain = %@, Code = %li", [error domain], [error code]);
+        APLog(@"Error Obtaining System Memory Info: Domain = %@, Code = %ld", [error domain], (long)[error code]);
 
     return totalFreeSpace;
 }