bsc_vty.c write_msc(): fix weird printf format

Change-Id: I856c2d620b89efcf3239186ef53c6941577dbccc
This commit is contained in:
Neels Hofmeyr 2023-03-01 01:32:58 +01:00 committed by neels
parent f30f630a88
commit ec6360e005
1 changed files with 2 additions and 2 deletions

View File

@ -2551,9 +2551,9 @@ static void write_msc(struct vty *vty, struct bsc_msc_data *msc)
vty_out(vty, " ");
if (msc->audio_support[i]->hr)
vty_out(vty, "hr%.1u", msc->audio_support[i]->ver);
vty_out(vty, "hr%u", msc->audio_support[i]->ver);
else
vty_out(vty, "fr%.1u", msc->audio_support[i]->ver);
vty_out(vty, "fr%u", msc->audio_support[i]->ver);
}
vty_out(vty, "%s", VTY_NEWLINE);