1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-08 05:57:26 +03:00

fs-util: drop unnecessary initialization

This commit is contained in:
Yu Watanabe 2021-09-02 12:05:14 +09:00 committed by Vito Caputo
parent c21d094c65
commit b71dbc6b56

View File

@ -375,7 +375,7 @@ int fd_warn_permissions(const char *path, int fd) {
int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode) {
_cleanup_close_ int fd = -1;
int r, ret = 0;
int r, ret;
assert(path);