diff options
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/tx_samples_c.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/examples/tx_samples_c.c b/host/examples/tx_samples_c.c index ebf368ec7..c052d80ed 100644 --- a/host/examples/tx_samples_c.c +++ b/host/examples/tx_samples_c.c @@ -189,7 +189,7 @@ int main(int argc, char* argv[]){ buffs_ptr = (const void**)&buff; size_t i = 0; for(i = 0; i < (samps_per_buff*2); i+=2){ - buff[i] = 0.1; + buff[i] = 0.1f; buff[i+1] = 0; } |