You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ac...@apache.org on 2017/08/11 09:37:45 UTC

[11/13] incubator-weex git commit: Add 32-bit device support.

Add 32-bit device support.


Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/cfe067a2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/cfe067a2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/cfe067a2

Branch: refs/heads/0.16-dev
Commit: cfe067a279049dac9c28db617b0d6686ebbdae5c
Parents: 75101d5
Author: DavidYang <ya...@ymatou.com>
Authored: Thu Aug 10 19:21:13 2017 +0800
Committer: DavidYang <ya...@ymatou.com>
Committed: Thu Aug 10 19:21:13 2017 +0800

----------------------------------------------------------------------
 ios/sdk/WeexSDK/Sources/Component/WXListComponent.m | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/cfe067a2/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m
----------------------------------------------------------------------
diff --git a/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m b/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m
index f995c3e..e0d1d72 100644
--- a/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m
+++ b/ios/sdk/WeexSDK/Sources/Component/WXListComponent.m
@@ -379,7 +379,7 @@
     
     [self.weexInstance.componentManager _addUITask:^{
         if (isDeleteSection) {
-            WXLogDebug(@"delete section:%ld", headerIndex);
+            WXLogDebug(@"delete section:%zd", headerIndex);
             [_completedSections removeObjectAtIndex:headerIndex];
         }
         
@@ -388,7 +388,7 @@
         }
         
         if (completedReloadSection) {
-            WXLogDebug(@"Reload section:%ld", reloadIndex);
+            WXLogDebug(@"Reload section:%zd", reloadIndex);
             _completedSections[reloadIndex] = completedReloadSection;
         }