1
0
mirror of https://github.com/systemd/systemd.git synced 2024-11-07 01:27:11 +03:00

manager: fd must be int, not char

This should fix the crash reported by Dan Horak on s390x which
does not have VTs.
This commit is contained in:
Michal Schmidt 2011-04-04 15:08:40 +02:00 committed by Lennart Poettering
parent db019b8dd2
commit 4466ee6a71

View File

@ -127,7 +127,7 @@ static int manager_setup_notify(Manager *m) {
}
static int enable_special_signals(Manager *m) {
char fd;
int fd;
assert(m);