From 3a5b43c45ebee9aaa3c3a8bfd56f59811fcf6ba8 Mon Sep 17 00:00:00 2001 From: MelwareDE Date: Mon, 4 Jul 2005 17:33:13 +0000 Subject: [PATCH] remove compiler warning on format string --- chan_capi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chan_capi.c b/chan_capi.c index 40587ae..859f7c7 100644 --- a/chan_capi.c +++ b/chan_capi.c @@ -156,7 +156,7 @@ MESSAGE_EXCHANGE_ERROR _capi_put_cmsg(_cmsg *CMSG) if (error) { ast_log(LOG_ERROR, "CAPI error sending %s (NCCI=%#x) (error=%#x)\n", - capi_cmsg2str(CMSG), CMSG->adr.adrNCCI, error); + capi_cmsg2str(CMSG), (unsigned int)CMSG->adr.adrNCCI, error); } else { if (CMSG->Command == CAPI_DATA_B3) { cc_ast_verbose(7, 1, "%s\n", capi_cmsg2str(CMSG));