mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 17:06:39 +09:00
utmp: make gcc shut up, we need to pass an int here, not size_t
This commit is contained in:
@@ -408,7 +408,7 @@ int utmp_wall(const char *message, bool (*match_tty)(const char *tty)) {
|
||||
path = u->ut_line;
|
||||
else {
|
||||
if (asprintf(&buf, "/dev/%.*s",
|
||||
sizeof(u->ut_line), u->ut_line) < 0) {
|
||||
(int) sizeof(u->ut_line), u->ut_line) < 0) {
|
||||
r = -ENOMEM;
|
||||
goto finish;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user