forked from Archive/PX4-Autopilot
fixed wrong status indication of sd log command if startup fails
This commit is contained in:
parent
e8c4506a12
commit
40abed787c
|
@ -131,7 +131,6 @@ int sdlog_main(int argc, char *argv[])
|
|||
4096,
|
||||
sdlog_thread_main,
|
||||
(argv) ? (const char **)&argv[2] : (const char **)NULL);
|
||||
thread_running = true;
|
||||
exit(0);
|
||||
}
|
||||
|
||||
|
@ -202,7 +201,7 @@ int sdlog_thread_main(int argc, char *argv[]) {
|
|||
|
||||
char folder_path[64];
|
||||
if (create_logfolder(folder_path))
|
||||
errx(1, "unable to create logging folder, exiting");
|
||||
errx(1, "unable to create logging folder, exiting.");
|
||||
|
||||
/* create sensorfile */
|
||||
int sensorfile = -1;
|
||||
|
|
Loading…
Reference in New Issue