diff options
| author | drowe67 <[email protected]> | 2023-07-14 10:58:22 +0930 |
|---|---|---|
| committer | David Rowe <[email protected]> | 2023-07-14 10:58:22 +0930 |
| commit | 0c2e969cfbe85548801eeb20ad8113969604892a (patch) | |
| tree | 3d14c471174eec69ea14dbe8bf86c7411b8c42a1 /src/freedv_data_channel.c | |
| parent | 6588e77f38bdebd7adffe091b22e7760d95d0ccb (diff) | |
manually fixed spelling errors from codec2 #406
Diffstat (limited to 'src/freedv_data_channel.c')
| -rw-r--r-- | src/freedv_data_channel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/freedv_data_channel.c b/src/freedv_data_channel.c index 7d361a1..dc1ad83 100644 --- a/src/freedv_data_channel.c +++ b/src/freedv_data_channel.c @@ -36,7 +36,7 @@ static unsigned char fdc_header_bcast[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }; -/* CCIT CRC table (0x1201 polynomal) */ +/* CCIT CRC table (0x1201 polynomail) */ static unsigned short fdc_crc_table[256] = { 0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf, 0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7, @@ -84,7 +84,7 @@ static unsigned short fdc_crc(unsigned char *buffer, size_t len) return crc ^ 0xffff; } -/* CRC4 0x03 polynomal */ +/* CRC4 0x03 polynomial */ static unsigned char fdc_crc4(unsigned char *buffer, size_t len) { unsigned char crc = 0x0f; |
