1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-28 03:25:31 +03:00

cat: fix priority type

Needs to be "int", not "char". Spotted by Frederic Crozat.
This commit is contained in:
Lennart Poettering 2012-03-27 00:20:48 +02:00
parent 2bd3c38a44
commit d508ac0ba0

View File

@ -33,7 +33,7 @@
#include "build.h"
static char *arg_identifier = NULL;
static char arg_priority = LOG_INFO;
static int arg_priority = LOG_INFO;
static bool arg_level_prefix = true;
static int help(void) {