Skip to content

Commit

Permalink
fixed remaining uint for windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
tapparelj committed Aug 14, 2023
1 parent 0fdb5ac commit 0d4f547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/fft_demod_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ namespace gr {
m_symb_numb = pmt::to_long(pmt::dict_ref(tags[0].value, pmt::string_to_symbol("symb_numb"), err));
}
}
if((uint)ninput_items[0]>=m_samples_per_symbol)//check if we have enough samples at the input
if((uint32_t)ninput_items[0]>=m_samples_per_symbol)//check if we have enough samples at the input
{
if (tags.size()){
tags[0].offset = nitems_written(0);
Expand Down

0 comments on commit 0d4f547

Please sign in to comment.