Fix error message display

This commit is contained in:
dogeystamp 2022-06-12 14:24:05 -04:00
parent 4f67b9db17
commit 5d2ab702f9
Signed by: dogeystamp
GPG Key ID: 7225FE3592EFFA38

2
util.c
View File

@ -27,8 +27,8 @@ logMsg(int lvl, char *msg, ...)
if (lvl == 2) {
vfprintf(stdout, msg, args);
} else {
vfprintf(stderr, msg, args);
fprintf(stderr, "minrss: ");
vfprintf(stderr, msg, args);
}
}