Skip to content

Commit

Permalink
Fix up localization settings
Browse files Browse the repository at this point in the history
  • Loading branch information
armadsen committed Dec 21, 2020
1 parent 97a75d5 commit 63d372b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Framework Project/ORSSerialPort.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 10.8;
MACOSX_DEPLOYMENT_TARGET = 10.9;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = macosx;
Expand Down
2 changes: 1 addition & 1 deletion Source/ORSSerialPort.m
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ - (instancetype)initWithDevice:(io_object_t)device;
NSString *bsdPath = [[self class] bsdCalloutPathFromDevice:device];
ORSSerialPort *existingPort = [[self class] existingPortWithPath:bsdPath];

if (existingPort != nil && IOObjectIsEqualTo(_IOKitDevice, device))
if (existingPort != nil && IOObjectIsEqualTo(_IOKitDevice, device)) {
{
self = nil;
return existingPort;
Expand Down

0 comments on commit 63d372b

Please sign in to comment.