Commit 7b7b63f3 authored by frtabu's avatar frtabu

remove warnings after rease

parent fba31941
...@@ -80,7 +80,7 @@ int16_t *base_sequence_less_than_36(unsigned int M_ZC, ...@@ -80,7 +80,7 @@ int16_t *base_sequence_less_than_36(unsigned int M_ZC,
break; break;
default: default:
printf("function base_sequence_less_than 36_: unsupported base sequence size : %u \n", M_ZC); printf("function base_sequence_less_than 36_: unsupported base sequence size : %u \n", M_ZC);
assert(0); abort();
break; break;
} }
...@@ -88,7 +88,7 @@ int16_t *base_sequence_less_than_36(unsigned int M_ZC, ...@@ -88,7 +88,7 @@ int16_t *base_sequence_less_than_36(unsigned int M_ZC,
if (rv_overbar == NULL) { if (rv_overbar == NULL) {
msg("Fatal memory allocation problem \n"); msg("Fatal memory allocation problem \n");
assert(0); abort();
} }
if (M_ZC == 30) { if (M_ZC == 30) {
......
...@@ -641,6 +641,7 @@ int nr_pdcch_channel_estimation(PHY_VARS_NR_UE *ue, ...@@ -641,6 +641,7 @@ int nr_pdcch_channel_estimation(PHY_VARS_NR_UE *ue,
} }
return(0); return(0);
} }
......
...@@ -103,7 +103,7 @@ void *get_idft(int ofdm_symbol_size) ...@@ -103,7 +103,7 @@ void *get_idft(int ofdm_symbol_size)
default: default:
printf("function get_idft : unsupported ofdm symbol size \n"); printf("function get_idft : unsupported ofdm symbol size \n");
assert(0); abort();
break; break;
} }
return idft; return idft;
...@@ -160,7 +160,7 @@ void *get_dft(int ofdm_symbol_size) ...@@ -160,7 +160,7 @@ void *get_dft(int ofdm_symbol_size)
default: default:
printf("function get_dft : unsupported ofdm symbol size \n"); printf("function get_dft : unsupported ofdm symbol size \n");
assert(0); abort();
break; break;
} }
return dft; return dft;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment