Skip to content
Snippets Groups Projects
Commit 7b585bef authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix GIT date truncation (e.g. "202" instead of "2024") in program-ID

parent fa4a5795
No related branches found
No related tags found
No related merge requests found
......@@ -246,7 +246,7 @@ char* msg_program_id(char* pid, size_t maxlen)
char compiler[64];
DESCRIBE_COMPILER(compiler);
snprintf(pid, maxlen, "%.10s %s%c-%s %s/%s %.10s %s"
snprintf(pid, maxlen, "%.10s %s%c-%s %s/%s %.11s %s"
,VERSION_NOTICE,VERSION,REVISION,PLATFORM_DESC
,GIT_BRANCH, GIT_HASH
,GIT_DATE, compiler);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment