Skip to content

Commit

Permalink
remove extra line feed in ver all
Browse files Browse the repository at this point in the history
  • Loading branch information
TimoSairiala committed Jul 29, 2024
1 parent 03584f3 commit 2bfed2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/systemcmds/ver/ver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ extern "C" __EXPORT int ver_main(int argc, char *argv[])

if (show_all || !strncmp(argv[1], sz_ver_bdate_str, sizeof(sz_ver_bdate_str))) {
time_t timestamp = px4_build_timestamp();
PX4_INFO_RAW("Build date: %s\n", asctime(gmtime(&timestamp)));
PX4_INFO_RAW("Build date: %s", asctime(gmtime(&timestamp)));
ret = 0;
}

Expand Down

0 comments on commit 2bfed2b

Please sign in to comment.