1
0
Fork 0

Fix log level

This commit is contained in:
Moritz Grimm 2015-05-26 14:22:56 +02:00
parent 715d840718
commit 7a4c7291da
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ xstrdup_c(const char *str, const char *file, unsigned int line)
char *ret = strdup(str);
if (NULL == ret) {
log_error("%s[%u]: cannot allocate %zu bytes",
log_alert("%s[%u]: cannot allocate %zu bytes",
file, line, strlen(str) + 1);
exit(1);
}