logind: fix compilation without utmp (#10674)

This commit is contained in:
Steven Allen 2018-11-07 08:29:21 -08:00 committed by Lennart Poettering
parent 1432d2dbdf
commit 86cf4554ef

View file

@ -778,7 +778,7 @@ int manager_read_utmp(Manager *m) {
endutxent(); endutxent();
return r; return r;
#else #else
return 0 return 0;
#endif #endif
} }