1
0
mirror of https://github.com/djcb/mu.git synced 2024-06-21 06:56:48 +02:00

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
commit 396368d1ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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