summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMuller, Alexander (A.) <amulle19@ford.com>2016-09-28 16:04:00 -0700
committerMuller, Alexander (A.) <amulle19@ford.com>2016-09-28 16:04:00 -0700
commit52415498975934b9a0b71087cedb9020be5eec79 (patch)
treecd51be5985cb4181d9839d7d02b04c7968df1718
parent192a5460616a8c276cd4d65b660c74e6cf258ec9 (diff)
downloadsdl_ios-feature/issue_8_json_encoder_decoder.tar.gz
-rw-r--r--SmartDeviceLink/SDLProtocol.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/SDLProtocol.m b/SmartDeviceLink/SDLProtocol.m
index c60d9049d..a1224dd34 100644
--- a/SmartDeviceLink/SDLProtocol.m
+++ b/SmartDeviceLink/SDLProtocol.m
@@ -185,7 +185,7 @@ typedef NSNumber SDLServiceTypeBox;
NSData *jsonData = [NSJSONSerialization dataWithJSONObject:[message serializeAsDictionary:[SDLGlobals globals].protocolVersion] options:kNilOptions error:error];
- if (*error != nil) {
+ if (error != nil) {
[SDLDebugTool logInfo:[NSString stringWithFormat:@"Error encoding JSON data: %@", *error] withType:SDLDebugType_Protocol];
}