1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-01-12 09:17:44 +03:00

sysusers: fix uninitialized warning

This commit is contained in:
Ronny Chevalier 2014-07-06 13:33:38 +02:00 committed by Tom Gundersen
parent f14aa1f1b2
commit bce415edca

View File

@ -1312,6 +1312,8 @@ static int parse_line(const char *fname, unsigned line, const char *buffer) {
h = groups; h = groups;
break; break;
default:
return -EBADMSG;
} }
i->type = action[0]; i->type = action[0];