Skip to content

Commit 74b8ea0

Browse files
author
Andrew Mayers
committed
Fix implicit cast regardless if the target is 32/64 bits.
1 parent 220d312 commit 74b8ea0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/ios/RfduinoManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ - (void)centralManager:(CBCentralManager *)central didRetrieveConnectedPeriphera
288288

289289
- (void)centralManagerDidUpdateState:(CBCentralManager *)aCentral
290290
{
291-
NSLog(@"central manager state = %ld", [central state]);
291+
NSLog(@"central manager state = %ld", (long)[central state]);
292292

293293
bool success = [self isBluetoothLESupported];
294294
if (success) {

0 commit comments

Comments
 (0)