summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Beharry <109764059+jshivabeharry@users.noreply.github.com>2022-08-26 10:42:05 -0400
committerGitHub <noreply@github.com>2022-08-26 10:42:05 -0400
commita5cd3a3d540b9d285de70f14302eef2376123ad0 (patch)
tree91c4e53d943c2177c03d093b270cd4db7fa7d344
parent6d52a1602d6d429a1dbe014c0ad0948a519790e3 (diff)
downloadsdl_ios-a5cd3a3d540b9d285de70f14302eef2376123ad0.tar.gz
Update SmartDeviceLink/private/SDLV2ProtocolHeader.m
Co-authored-by: Joel Fischer <joeljfischer@gmail.com>
-rw-r--r--SmartDeviceLink/private/SDLV2ProtocolHeader.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/SmartDeviceLink/private/SDLV2ProtocolHeader.m b/SmartDeviceLink/private/SDLV2ProtocolHeader.m
index 813ff28d4..ca174c18c 100644
--- a/SmartDeviceLink/private/SDLV2ProtocolHeader.m
+++ b/SmartDeviceLink/private/SDLV2ProtocolHeader.m
@@ -124,7 +124,7 @@ const int ProtocolV2HeaderByteSize = 12;
}
- (NSUInteger)hash {
- return (self.data.hash) ^ (self.description.hash);
+ return self.data.hash ^ self.description.hash;
}
- (BOOL)isEqual:(SDLV2ProtocolHeader *)object {