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
1 changed files with 1 additions and 1 deletions

View File

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