diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2019-11-13 11:40:26 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2019-11-14 10:54:40 +0200 |
commit | 9c4b5c493161780b301877de6f96316ecf9b4e93 (patch) | |
tree | e62a58e9b454a6a1903b50515c99638baf2d4764 /compositor | |
parent | 58e99de1a842a0801b8b3f6a024bc64d00fd5ef7 (diff) |
compositor: Fix some warning when passing debugoptimized to meson
Increase the buf size such it can accomodate sufficiently large local
buffers. Spotted whilst looking for something else.
../compositor/main.c:157:22: warning: ‘%s’ directive output may be
truncated writing up to 511 bytes into a region of size 128
[-Wformat-truncation=]
157 | snprintf(buf, len, "%s[%s.%03li]", datestr,
| ^~ ~~~~~~~
../compositor/main.c:157:21: note: directive argument in the range
[-9223372036854775, 9223372036854775]
157 | snprintf(buf, len, "%s[%s.%03li]", datestr,
| ^~~~~~~~~~~~~~
../compositor/main.c:157:2: note: ‘snprintf’ output between 7 and 659
bytes into a destination of size 128
157 | snprintf(buf, len, "%s[%s.%03li]", datestr,
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
158 | timestr, (tv.tv_usec / 1000));
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Diffstat (limited to 'compositor')
-rw-r--r-- | compositor/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compositor/main.c b/compositor/main.c index 29a427b9..22ac8b23 100644 --- a/compositor/main.c +++ b/compositor/main.c @@ -163,7 +163,7 @@ weston_log_timestamp(char *buf, size_t len) static void custom_handler(const char *fmt, va_list arg) { - char timestr[128]; + char timestr[512]; weston_log_scope_printf(log_scope, "%s libwayland: ", weston_log_timestamp(timestr, |