tests/util: fix incorrect memset argument order

Make it actually clear the LUT.

Reported-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Ilia Mirkin <imirkin@alum.mit.edu>
Reviewed-by: Dave Airlie <airlied@redhat.com>
main
Ilia Mirkin 2019-07-02 23:18:56 -04:00
parent b2103fa325
commit dcc586c66c
1 changed files with 1 additions and 1 deletions

View File

@ -643,7 +643,7 @@ void util_smpte_c8_gamma(unsigned size, struct drm_color_lut *lut)
printf("Error: gamma too small: %d < %d\n", size, 7 + 7 + 8);
return;
}
memset(lut, size * sizeof(struct drm_color_lut), 0);
memset(lut, 0, size * sizeof(struct drm_color_lut));
#define FILL_COLOR(idx, r, g, b) \
lut[idx].red = (r) << 8; \