mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-13 03:50:03 -04:00
media: atomisp: Fix Wformat-truncation warning
Gcc8 is convinced that we do not have enough space in dot_id_input_bin. Extend the variable 17 bytes which is just used for debugging. drivers/staging/media/atomisp/pci/runtime/debug/src/ia_css_debug.c:1336:9: warning: '(pipe' directive output may be truncated writing 5 bytes into a region of size between 1 and 74 [-Wformat-truncation=] Signed-off-by: Ricardo Ribalda <ribalda@chromium.org> Reviewed-by: Andy Shevchenko <andy@kernel.org> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
committed by
Hans Verkuil
parent
3d622ba277
commit
a898d2ea7e
@@ -121,7 +121,8 @@ static const char *const pipe_id_to_str[] = {
|
||||
/* [IA_CSS_PIPE_ID_YUVPP] =*/ "yuvpp",
|
||||
};
|
||||
|
||||
static char dot_id_input_bin[SH_CSS_MAX_BINARY_NAME + 10];
|
||||
/* 27 is combined length of _stage%d(pipe%d)\0. */
|
||||
static char dot_id_input_bin[SH_CSS_MAX_BINARY_NAME + 27];
|
||||
static char ring_buffer[200];
|
||||
|
||||
void ia_css_debug_dtrace(unsigned int level, const char *fmt, ...)
|
||||
|
||||
Reference in New Issue
Block a user