mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
refactor: warn() => warning()
This commit is contained in:
parent
c726e68b44
commit
e76f8fc4f4
2 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,7 @@ void info(const char *fmt, ...)
|
|||
__attribute__ ((format(printf, 1, 2)));
|
||||
|
||||
/** Printf alike warning message. */
|
||||
void warn(const char *fmt, ...)
|
||||
void warning(const char *fmt, ...)
|
||||
__attribute__ ((format(printf, 1, 2)));
|
||||
|
||||
/** Printf alike statistics message. */
|
||||
|
|
|
@ -66,7 +66,7 @@ void info(const char *fmt, ...)
|
|||
free(buf);
|
||||
}
|
||||
|
||||
void warn(const char *fmt, ...)
|
||||
void warning(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue