amr: Whitespace fix

Change-Id: I7da6813a501ee97ca54611f627870c7eb842ddbe
This commit is contained in:
Alexander Chemeris 2020-05-15 15:31:18 +03:00 committed by laforge
parent 4752930972
commit 09c71b04f5
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ bool osmo_amr_is_oa(uint8_t *payload, unsigned int payload_len)
/* Match the length of the received payload against the expected frame
* length that is defined by the frame type. */
if(!osmo_amr_ft_valid(oa_hdr->ft))
if (!osmo_amr_ft_valid(oa_hdr->ft))
return false;
frame_len = osmo_amr_bytes(oa_hdr->ft);
if (frame_len != payload_len - sizeof(struct amr_hdr))