diff --git a/bin/deploy.m b/bin/deploy.m index f4759982..2926c2b4 100644 --- a/bin/deploy.m +++ b/bin/deploy.m @@ -654,13 +654,15 @@ start_debug_server(am_device_t dev) int index_month = 0; int index_day = 1; int index_time = 2; - if ([[words objectAtIndex:index_day] isEqualToString:@""]) { + if ([[words objectAtIndex:index_day] + isEqualToString:@""]) { index_day++; index_time++; } NSString *str = [NSString stringWithFormat: @"%@ %@ %@", [words objectAtIndex:index_month], - [words objectAtIndex:index_day], [words objectAtIndex:index_time]]; + [words objectAtIndex:index_day], + [words objectAtIndex:index_time]]; NSDate *date = [NSDate dateWithNaturalLanguageString: str]; if ([date compare:app_launch_date]