diff --git a/src/systemcmds/ver/ver.cpp b/src/systemcmds/ver/ver.cpp index 3ab74c1b1cb3..ae3d93c9e29b 100644 --- a/src/systemcmds/ver/ver.cpp +++ b/src/systemcmds/ver/ver.cpp @@ -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(×tamp))); + PX4_INFO_RAW("Build date: %s", asctime(gmtime(×tamp))); ret = 0; }