fix compilation of zmq_remote_rx

This commit is contained in:
Andre Puschmann 2019-12-05 18:22:16 +01:00
parent 4dbbcaa668
commit 447f71b8c9
1 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,7 @@ static void parse_args(int argc, char **argv) {
rf_gain = strtof(argv[optind], NULL);
break;
case 'm':
rf_recv_frame_size_ms = strtol(argv[optind], NULL);
rf_recv_frame_size_ms = strtol(argv[optind], NULL, 10);
break;
case 'r':
rf_rate = strtof(argv[optind], NULL);
@ -239,7 +239,7 @@ static void parse_args(int argc, char **argv) {
zmq_args = argv[optind];
break;
case 'A':
nof_rx_antennas = strtol(argv[optind], NULL);
nof_rx_antennas = strtol(argv[optind], NULL, 10);
break;
default:
usage(argv[0]);