diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-10-28 12:43:52 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-10-31 19:09:20 +0100 |
commit | 96d66d89c9ba3cc936a8d8217370c70292a6abb7 (patch) | |
tree | 1a7fc31fe606e23edda4dd6c941ab4488a44b10d /src/basic/fdset.h | |
parent | b41b9d2ae9d1139a3d4d5eb7ad7b100ffa3ee6db (diff) |
core: constify a few things
Diffstat (limited to 'src/basic/fdset.h')
-rw-r--r-- | src/basic/fdset.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/fdset.h b/src/basic/fdset.h index 340438d7c4..70d8acbcff 100644 --- a/src/basic/fdset.h +++ b/src/basic/fdset.h @@ -35,7 +35,7 @@ int fdset_consume(FDSet *s, int fd); bool fdset_contains(FDSet *s, int fd); int fdset_remove(FDSet *s, int fd); -int fdset_new_array(FDSet **ret, int *fds, unsigned n_fds); +int fdset_new_array(FDSet **ret, const int *fds, unsigned n_fds); int fdset_new_fill(FDSet **ret); int fdset_new_listen_fds(FDSet **ret, bool unset); |