Fixed order of arguments in px4_task_spawn_cmd.

Fixes #5601
This commit is contained in:
Glenn Bitar
2016-10-04 21:43:55 +02:00
committed by Beat Küng
parent c81a1631ec
commit 6d41ab9e16
+1 -1
View File
@@ -108,8 +108,8 @@ __EXPORT void px4_systemreset(bool to_bootloader) noreturn_function;
/** Starts a task and performs any specific accounting, scheduler setup, etc. */
__EXPORT px4_task_t px4_task_spawn_cmd(const char *name,
int priority,
int scheduler,
int priority,
int stack_size,
px4_main_t entry,
char *const argv[]);