Fix subchan_demux_test compiler warning on some gcc versions

In commit Ia082b9fddf03d02afd007825a1588a3ef0dbedae we switched
from 'uint8_t *' to 'const ubit_t *' - change the test case
accordingly.

Change-Id: I7d24b891a21e6e485738ddf4a302583579b012d5
This commit is contained in:
Harald Welte 2020-05-13 18:50:45 +02:00
parent 2f182e4047
commit 4119e5124d
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ static uint8_t test_frames[] =
static int data_cb(struct subch_demux *demux, int ch, uint8_t *data, int len, void *p)
static int data_cb(struct subch_demux *demux, int ch, const ubit_t *data, int len, void *p)
{
printf("DATA_CB Channel(%d): %s\n",
ch, osmo_hexdump(data, len));