Skip to content

Commit

Permalink
Fix compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
rlepinski committed Sep 6, 2016
1 parent 9441644 commit 5739336
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Airship/Common/UAAutomation.m
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ - (void)updateTriggersWithType:(UAScheduleTriggerType)triggerType argument:(id)a

NSDate *methodFinish = [NSDate date];
NSTimeInterval executionTime = [methodFinish timeIntervalSinceDate:methodStart];
UA_LTRACE(@"Automation execution time: %f seconds, triggers: %ld, actions: %ld", executionTime, (unsigned long)triggers.count, triggeredSchedules.count);
UA_LTRACE(@"Automation execution time: %f seconds, triggers: %ld, actions: %ld", executionTime, (unsigned long)triggers.count, (unsigned long)triggeredSchedules.count);
}];
}

Expand Down

0 comments on commit 5739336

Please sign in to comment.