mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-25 00:09:02 +00:00
[NFC] Fix unused variable warning in Release builds (#1494)
The condition inside the assert is dropped in Release builds, so `num_printed` becomes unused. Signed-off-by: Sven van Haastregt <sven.vanhaastregt@arm.com>
This commit is contained in:
committed by
GitHub
parent
6554c49018
commit
89c8d87963
@@ -1256,6 +1256,7 @@ static int l_capacity( cl_device_id device, cl_context context, cl_command_queue
|
|||||||
char prog_src[MAX_STR];
|
char prog_src[MAX_STR];
|
||||||
int num_printed = snprintf(prog_src,sizeof(prog_src),prog_src_template,max_size, max_size);
|
int num_printed = snprintf(prog_src,sizeof(prog_src),prog_src_template,max_size, max_size);
|
||||||
assert( num_printed < MAX_STR ); // or increase MAX_STR
|
assert( num_printed < MAX_STR ); // or increase MAX_STR
|
||||||
|
(void)num_printed;
|
||||||
|
|
||||||
StringTable ksrc;
|
StringTable ksrc;
|
||||||
ksrc.add( prog_src );
|
ksrc.add( prog_src );
|
||||||
|
|||||||
Reference in New Issue
Block a user