Skip to content
Snippets Groups Projects
Commit 41e32790 authored by cromain's avatar cromain
Browse files

Stylistic change to a sizeof().

parent f467fada
No related branches found
No related tags found
No related merge requests found
......@@ -630,7 +630,7 @@ static int SPAWaveform (
tmplt->order = tmplt->order;
/* zero output */
memset( expPsi, 0, signal->data->length * sizeof(COMPLEX16) );
memset( expPsi, 0, signal->data->length * sizeof(*expPsi) );
/* parameters */
deltaF = signal->deltaF;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment