Skip to content
Snippets Groups Projects
Commit 2bb2ad3d authored by Oliver Bock's avatar Oliver Bock
Browse files

Avoid compiler warnings

parent de24b3f4
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ clFFT_ExecuteInterleaved( cl_command_queue queue, clFFT_Plan Plan, cl_int batchS
cl_int err;
size_t gWorkItems, lWorkItems;
int inPlaceDone;
int inPlaceDone = -1;
cl_int isInPlace = data_in == data_out ? 1 : 0;
......@@ -231,7 +231,7 @@ clFFT_ExecutePlannar( cl_command_queue queue, clFFT_Plan Plan, cl_int batchSize,
cl_int err;
size_t gWorkItems, lWorkItems;
int inPlaceDone;
int inPlaceDone = -1;
cl_int isInPlace = ((data_in_real == data_out_real) && (data_in_imag == data_out_imag)) ? 1 : 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment