Merge pull request #1672 from krietvel/strftime-fix

mu-store: enlarge buffer for strftime
This commit is contained in:
Dirk-Jan C. Binnema
2020-05-01 22:27:31 +03:00
committed by GitHub

View File

@ -1408,7 +1408,7 @@ mu_store_print_info (const MuStore *store, gboolean nocolor)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-y2k"
char tbuf[32];
char tbuf[64];
strftime (tbuf, sizeof(tbuf), "%c", tstamp);
#pragma GCC diagnostic pop