diff --git a/src/basic/env-file.c b/src/basic/env-file.c index 5a4b21ee6a..45b0d901c5 100644 --- a/src/basic/env-file.c +++ b/src/basic/env-file.c @@ -381,7 +381,7 @@ int parse_env_file_fd_sentinel( const char *fname, /* only used for logging */ ...) { - _cleanup_close_ int fd_ro = -EBADFD; + _cleanup_close_ int fd_ro = -EBADF; _cleanup_fclose_ FILE *f = NULL; va_list ap; int r; diff --git a/src/basic/stat-util.c b/src/basic/stat-util.c index 693e1f7eb6..700e28f2c2 100644 --- a/src/basic/stat-util.c +++ b/src/basic/stat-util.c @@ -183,7 +183,7 @@ static int fd_is_read_only_fs(int fd) { } int path_is_read_only_fs(const char *path) { - _cleanup_close_ int fd = -EBADFD; + _cleanup_close_ int fd = -EBADF; assert(path); diff --git a/src/locale/localed-util.c b/src/locale/localed-util.c index cace820bdd..ddca11d908 100644 --- a/src/locale/localed-util.c +++ b/src/locale/localed-util.c @@ -93,7 +93,7 @@ int locale_read_data(Context *c, sd_bus_message *m) { } int vconsole_read_data(Context *c, sd_bus_message *m) { - _cleanup_close_ int fd = -EBADFD; + _cleanup_close_ int fd = -EBADF; struct stat st; /* Do not try to re-read the file within single bus operation. */ @@ -130,7 +130,7 @@ int vconsole_read_data(Context *c, sd_bus_message *m) { } int x11_read_data(Context *c, sd_bus_message *m) { - _cleanup_close_ int fd = -EBADFD, fd_ro = -EBADFD; + _cleanup_close_ int fd = -EBADF, fd_ro = -EBADF; _cleanup_fclose_ FILE *f = NULL; bool in_section = false; struct stat st; diff --git a/src/shared/locale-setup.c b/src/shared/locale-setup.c index 64af9d57b8..8943a42c9d 100644 --- a/src/shared/locale-setup.c +++ b/src/shared/locale-setup.c @@ -55,7 +55,7 @@ static int locale_context_load_proc(LocaleContext *c, LocaleLoadFlag flag) { } static int locale_context_load_conf(LocaleContext *c, LocaleLoadFlag flag) { - _cleanup_close_ int fd = -EBADFD; + _cleanup_close_ int fd = -EBADF; struct stat st; int r;