Remove excessive log warning

This commit is contained in:
Stas Degteff 2011-02-22 14:23:12 +00:00
parent aedd9c96d5
commit a1ba13fa7c

View File

@ -155,11 +155,11 @@ void update_statusline(const char* info) {
void update_statuslinef(const char *format, const char *token, ...) void update_statuslinef(const char *format, const char *token, ...)
{ {
if ( !(format && *format && token && *token) ) if ( !(format && *format && token) )
{ {
LOG.errpointer(__FILE__, __LINE__); LOG.errpointer(__FILE__, __LINE__);
LOG.printf( "! Parameter is NULL pointer or empty string: update_statuslinef(\"%s\",\"%s\",...).", LOG.printf( "! Parameter is NULL pointer or empty string: update_statuslinef(\"%s\",\"%s\",...).",
(format?(*format)?format:"":"(NULL)"), (token?(*token)?token:"":"(NULL)") ); (format?(*format)?format:"":"(NULL)"), (token?token:"(NULL)") );
update_statusline(UPDATE_STATUSLINE_ERROR); update_statusline(UPDATE_STATUSLINE_ERROR);
return; return;
} }