mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2025-04-13 06:13:17 +00:00
fixing comparison
This commit is contained in:
parent
8f9466ba57
commit
fcfbfbc5ef
@ -60,7 +60,7 @@ int interleaved_byte_to_complex_byte::work(int noutput_items,
|
||||
// This could be put into a Volk kernel
|
||||
int8_t real_part;
|
||||
int8_t imag_part;
|
||||
for(unsigned int number = 0; number < 2 * noutput_items; number++)
|
||||
for(int number = 0; number < 2 * noutput_items; number++)
|
||||
{
|
||||
// lv_cmake(r, i) defined at volk/volk_complex.h
|
||||
real_part = *in++;
|
||||
|
@ -60,7 +60,7 @@ int interleaved_short_to_complex_short::work(int noutput_items,
|
||||
// This could be put into a Volk kernel
|
||||
int16_t real_part;
|
||||
int16_t imag_part;
|
||||
for(unsigned int number = 0; number < 2 * noutput_items; number++)
|
||||
for(int number = 0; number < 2 * noutput_items; number++)
|
||||
{
|
||||
// lv_cmake(r, i) defined at volk/volk_complex.h
|
||||
real_part = *in++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user