From: Sean Bright Date: Tue, 18 Sep 2012 20:19:49 +0000 (+0000) Subject: Make the casing of CALL_ID in debug messages consistent to satisfy my OCD. X-Git-Tag: 13.0.0-beta1~2533 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9d4f8abdc61d1f6a29093e5ce188c1487cbe1c81;p=thirdparty%2Fasterisk.git Make the casing of CALL_ID in debug messages consistent to satisfy my OCD. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@373142 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/logger.c b/main/logger.c index 5ff3080099..c4836c6538 100644 --- a/main/logger.c +++ b/main/logger.c @@ -1340,7 +1340,7 @@ int ast_callid_threadassoc_remove() ast_log(LOG_ERROR, "Tried to clean callid thread storage with no callid in thread storage.\n"); return -1; } else { - ast_debug(3, "Call_ID [C-%08x] being removed from thread.\n", (*pointing)->call_identifier); + ast_debug(3, "CALL_ID [C-%08x] being removed from thread.\n", (*pointing)->call_identifier); *pointing = ast_callid_unref(*pointing); return 0; }