summaryrefslogtreecommitdiff
path: root/platform/ios/app
diff options
context:
space:
mode:
authorJesse Bounds <jesse@rebounds.net>2016-11-23 12:21:52 -0800
committerGitHub <noreply@github.com>2016-11-23 12:21:52 -0800
commit67e079f7268015f75b47090a6a0db5c3176d40d6 (patch)
tree6e2c56b6398b405e702692a3c143cbaf8baaa0b6 /platform/ios/app
parent75666e5b539010e08badf6e79b1269da1361f4b5 (diff)
downloadqtlocation-mapboxgl-67e079f7268015f75b47090a6a0db5c3176d40d6.tar.gz
[ios, macos] Fix integer formatting in formatted exception strings (#7173)
Diffstat (limited to 'platform/ios/app')
-rw-r--r--platform/ios/app/MBXViewController.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/app/MBXViewController.m b/platform/ios/app/MBXViewController.m
index 91e934ed1f..8a2ccee413 100644
--- a/platform/ios/app/MBXViewController.m
+++ b/platform/ios/app/MBXViewController.m
@@ -1596,7 +1596,7 @@ typedef NS_ENUM(NSInteger, MBXSettingsMiscellaneousRows) {
{
queuedAnnotations += queue.count;
}
- self.hudLabel.text = [NSString stringWithFormat:@"Visible: %ld Queued: %ld", (long)mapView.visibleAnnotations.count, (long)queuedAnnotations];
+ self.hudLabel.text = [NSString stringWithFormat:@"Visible: %ld Queued: %ld", (unsigned long)mapView.visibleAnnotations.count, (unsigned long)queuedAnnotations];
}
}