summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Fischer <joeljfischer@gmail.com>2018-10-19 10:31:10 -0400
committerJoel Fischer <joeljfischer@gmail.com>2018-10-19 10:31:10 -0400
commit7ede32259a8229fea6804eccbc76cb2b9d528833 (patch)
tree3130ecec2bd142ef6c94a2ac7b17cc9a6899cd0b
parent7417e5122184e282db31c8713ce69a9ec1028a97 (diff)
downloadsdl_ios-7ede32259a8229fea6804eccbc76cb2b9d528833.tar.gz
Fix some castshotfix/6.1.1
-rw-r--r--SmartDeviceLink/SDLChoiceSet.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/SmartDeviceLink/SDLChoiceSet.m b/SmartDeviceLink/SDLChoiceSet.m
index 62bd97470..ab32b1371 100644
--- a/SmartDeviceLink/SDLChoiceSet.m
+++ b/SmartDeviceLink/SDLChoiceSet.m
@@ -47,7 +47,7 @@ static SDLChoiceSetLayout _defaultLayout = SDLChoiceSetLayoutList;
if (!self) { return nil; }
if (choices.count == 0 || choices.count > 100) {
- SDLLogW(@"Attempted to create a choice set with %lu choices; Only 1 - 100 choices are valid", choices.count);
+ SDLLogW(@"Attempted to create a choice set with %lu choices; Only 1 - 100 choices are valid", (unsigned long)choices.count);
return nil;
}
@@ -57,7 +57,7 @@ static SDLChoiceSetLayout _defaultLayout = SDLChoiceSetLayoutList;
}
if (title.length == 0 || title.length > 500) {
- SDLLogW(@"Attempted to create a choice set with a %lu length. Only 500 characters are supported", title.length);
+ SDLLogW(@"Attempted to create a choice set with a %lu length. Only 500 characters are supported", (unsigned long)title.length);
return nil;
}