$$DATE is fixed.

This commit is contained in:
Christoffer Lerno
2023-02-18 00:03:46 +01:00
parent 9061699adf
commit 3da9008fdc
2 changed files with 2 additions and 2 deletions

View File

@@ -22,6 +22,6 @@ const char *date_get(void)
time(&rawtime);
timeinfo = localtime(&rawtime);
scratch_buffer_clear();
scratch_buffer_printf("%02d-%02d-%02d", timeinfo->tm_year + 1900, timeinfo->tm_mon, timeinfo->tm_mday);
scratch_buffer_printf("%02d-%02d-%02d", timeinfo->tm_year + 1900, timeinfo->tm_mon + 1, timeinfo->tm_mday);
return scratch_buffer_copy();
}

View File

@@ -1 +1 @@
#define COMPILER_VERSION "0.4.72"
#define COMPILER_VERSION "0.4.73"