fixed function signature

This commit is contained in:
KuzVlad 2022-10-23 13:13:05 +03:00
parent c8aafb1be0
commit 83f390ba88
2 changed files with 2 additions and 2 deletions

View File

@ -873,7 +873,7 @@ void ProcessReservedData(dsd_opts * opts, dsd_state * state, uint8_t info[196],
void ProcessUnifiedData(dsd_opts * opts, dsd_state * state, uint8_t info[196], uint8_t syncdata[48], uint8_t SlotType[20]);
//LFSR code courtesy of https://github.com/mattames/LFSR/
int LFSR(dsd_state * state);
void LFSR(dsd_state * state);
void LFSRN (char * BufferIn, char * BufferOut, dsd_state * state);
void Hamming_7_4_init();

View File

@ -2747,7 +2747,7 @@ void ProcessVoiceBurstSync(dsd_opts * opts, dsd_state * state)
} /* End ProcessVoiceBurstSync() */
//LFSR code courtesy of https://github.com/mattames/LFSR/
int LFSR(dsd_state * state)
void LFSR(dsd_state * state)
{
int lfsr = 0;