summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}