format src/examples/rover_steering_control

This commit is contained in:
Daniel Agar 2015-09-05 12:21:10 -04:00
parent 293739ce20
commit 9dd8864a1b
1 changed files with 5 additions and 5 deletions

View File

@ -430,7 +430,7 @@ int rover_steering_control_main(int argc, char *argv[])
SCHED_PRIORITY_MAX - 20,
2048,
rover_steering_control_thread_main,
(argv) ? (char * const *)&argv[2] : (char * const *)NULL);
(argv) ? (char *const *)&argv[2] : (char *const *)NULL);
thread_running = true;
exit(0);
}