diff options
author | Kay Sievers <kay@vrfy.org> | 2012-11-22 18:46:08 +0100 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2012-11-22 18:46:08 +0100 |
commit | 79263d03926af6e0a7f97bf70afb2cd37bdcf9db (patch) | |
tree | 07bfb4529763c9c42884523faf27f307a5e86b48 | |
parent | d7228cb8529de83115af04bf653b4d204dad8fae (diff) |
shared: FORMAT_TIMESTAMP_MAX +1
5 is for weekday+comma+space, but week days in french have 4 digits
https://bugs.freedesktop.org/show_bug.cgi?id=57411
-rw-r--r-- | src/shared/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index a148ebbc58..5eb272d231 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -79,7 +79,7 @@ union dirent_storage { #define QUOTES "\"\'" #define COMMENTS "#;\n" -#define FORMAT_TIMESTAMP_MAX (5+11+9+4+1) +#define FORMAT_TIMESTAMP_MAX (6+11+9+4+1) #define FORMAT_TIMESTAMP_PRETTY_MAX 256 #define FORMAT_TIMESPAN_MAX 64 #define FORMAT_BYTES_MAX 8 |