Fix compiler warning. 0 does not work on strings

This commit is contained in:
Holger Hans Peter Freyther 2009-10-22 15:44:30 +02:00
parent ddd918f7ec
commit 2c481b27fc
1 changed files with 1 additions and 1 deletions

View File

@ -759,7 +759,7 @@ static int abis_nm_rx_statechg_rep(struct msgb *mb)
}
if (TLVP_PRESENT(&tp, NM_ATT_ADM_STATE)) {
new_state.administrative = *TLVP_VAL(&tp, NM_ATT_ADM_STATE);
DEBUGPC(DNM, "ADM=%02s ", nm_adm_name(new_state.administrative));
DEBUGPC(DNM, "ADM=%2s ", nm_adm_name(new_state.administrative));
}
DEBUGPC(DNM, "\n");