Skip to content

Commit

Permalink
Merge pull request DediProgSW#64 from bcran/build-date
Browse files Browse the repository at this point in the history
Use __DATE__ instead of hard-coding build date
  • Loading branch information
DediprogEvy authored Jun 26, 2023
2 parents f297c88 + c429bf0 commit bdb91ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpcmd.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ int main(int argc, char* argv[])
unsigned long r;
char* env;

printf("\nDpCmd Linux 1.14.11.%02d Engine Version:\nLast Built on January 7 2023\n\n", GetConfigVer()); // 1. new feature.bug.configS
printf("\nDpCmd Linux 1.14.11.%02d Engine Version:\nLast Built on %s\n\n", GetConfigVer(), __DATE__); // 1. new feature.bug.configS

g_ucOperation = 0;
GetLogPath(g_LogPath);
Expand Down

0 comments on commit bdb91ad

Please sign in to comment.