瀏覽代碼

fix warning UIDevice+VLC

Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>
Pierre SAGASPE 10 年之前
父節點
當前提交
f1fcde6897
共有 1 個文件被更改,包括 1 次插入1 次删除
  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;
 }