Skip to content

Commit dfb9b9d

Browse files
committed
use syslog, not msg
1 parent 571d257 commit dfb9b9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auparse/lru.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ void lru_evict(Queue *queue, unsigned int key)
298298
QNode *temp = queue->front;
299299

300300
if (hash->array[key] != temp) {
301-
msg(LOG_ERR, "lru_evict called with mismatched key %s",
301+
syslog(LOG_ERR, "lru_evict called with mismatched key %s",
302302
queue->name);
303303
abort();
304304
}

0 commit comments

Comments
 (0)