Write message into log and statusline if parameter of update_statuslinef() is invalid
This commit is contained in:
parent
bc014f0485
commit
848b7129c2
@ -148,8 +148,9 @@ void update_statuslinef(const char *format, const char *token, ...)
|
|||||||
if ( !(format && *format && token && *token) )
|
if ( !(format && *format && token && *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)?token:"":"(NULL)") );
|
||||||
|
update_statusline(" ERROR! Please look a log file and make a report to developers! ");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user