summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshutosh Dixit <ashutosh.dixit@intel.com>2022-07-01 20:05:36 -0700
committerAshutosh Dixit <ashutosh.dixit@intel.com>2022-07-06 14:11:58 -0700
commitff483cfd7ea5c7dd03ba59bc68447571200bbb2e (patch)
tree0646b899b7f2d9bc1836019953f95e555606324d
parent35edd17a9c1dcd71b92182bce9378eea321b0f37 (diff)
tests/kms_cursor_crc: Fix -Wformat-truncation
[72/1181] Compiling C object tests/kms_cursor_crc.p/kms_cursor_crc.c.o ../tests/kms_cursor_crc.c: In function ‘run_size_tests.constprop’: ../tests/kms_cursor_crc.c:702:50: warning: ‘%d’ directive output may be truncated writing between 1 and 11 bytes into a region of size between 4 and 14 [-Wformat-truncation=] 702 | snprintf(name, sizeof(name), "%dx%d", w, h); | ^~ ../tests/kms_cursor_crc.c:702:46: note: directive argument in the range [-2147483648, 1024] 702 | snprintf(name, sizeof(name), "%dx%d", w, h); | ^~~~~~~ Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com> Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
-rw-r--r--tests/kms_cursor_crc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kms_cursor_crc.c b/tests/kms_cursor_crc.c
index 5c90537b..58806355 100644
--- a/tests/kms_cursor_crc.c
+++ b/tests/kms_cursor_crc.c
@@ -693,7 +693,7 @@ static void test_rapid_movement(data_t *data)
static void run_size_tests(data_t *data, void (*testfunc)(data_t *),
int w, int h)
{
- char name[16];
+ char name[32];
enum pipe pipe;
if (w == 0 && h == 0)