forgot return 0

This commit is contained in:
Ismael Gomez 2017-02-10 18:23:09 +01:00
parent 9b04b6ee88
commit 57e7898bd8
1 changed files with 2 additions and 2 deletions

View File

@ -186,7 +186,7 @@ int rf_uhd_start_rx_stream(void *h)
stream_cmd.time_spec_frac_secs -= 1;
stream_cmd.time_spec_full_secs += 1;
}
uhd_rx_streamer_issue_stream_cmd(handler->rx_stream, &stream_cmd); return 0;
uhd_rx_streamer_issue_stream_cmd(handler->rx_stream, &stream_cmd);
return 0;
}