1
0
Fork 0
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:
Steffen Vogel 2018-10-21 21:52:44 +01:00
parent c726e68b44
commit e76f8fc4f4
2 changed files with 2 additions and 2 deletions

View file

@ -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. */

View file

@ -66,7 +66,7 @@ void info(const char *fmt, ...)
free(buf);
}
void warn(const char *fmt, ...)
void warning(const char *fmt, ...)
{
va_list ap;