summaryrefslogtreecommitdiff
path: root/src/shared/fdset.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/fdset.h')
-rw-r--r--src/shared/fdset.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/fdset.h b/src/shared/fdset.h
index 6277e464d8..907acd76dd 100644
--- a/src/shared/fdset.h
+++ b/src/shared/fdset.h
@@ -49,5 +49,5 @@ int fdset_iterate(FDSet *s, Iterator *i);
#define FDSET_FOREACH(fd, fds, i) \
for ((i) = ITERATOR_FIRST, (fd) = fdset_iterate((fds), &(i)); (fd) >= 0; (fd) = fdset_iterate((fds), &(i)))
-define_trivial_cleanup_func(FDSet*, fdset_free)
+DEFINE_TRIVIAL_CLEANUP_FUNC(FDSet*, fdset_free);
#define _cleanup_fdset_free_ _cleanup_(fdset_freep)