From: Joshua Colp Date: Mon, 8 Jan 2007 18:26:50 +0000 (+0000) Subject: Change trylock output for what already has the lock from an error to a warning. X-Git-Tag: 1.6.0-beta1~3^2~3518 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e0d0362e8b3b80bae768d152ee483ab6eb7fcea;p=thirdparty%2Fasterisk.git Change trylock output for what already has the lock from an error to a warning. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@50034 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/lock.h b/include/asterisk/lock.h index ca6663a9cd..d326b6157d 100644 --- a/include/asterisk/lock.h +++ b/include/asterisk/lock.h @@ -306,7 +306,7 @@ static inline int __ast_pthread_mutex_trylock(const char *filename, int lineno, filename, lineno, func, mutex_name); } } else { - __ast_mutex_logger("%s line %d (%s): Error: '%s' was locked here.\n", + __ast_mutex_logger("%s line %d (%s): Warning: '%s' was locked here.\n", t->file[t->reentrancy-1], t->lineno[t->reentrancy-1], t->func[t->reentrancy-1], mutex_name); }