diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2013-07-10 12:37:46 -0400 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2013-07-10 12:37:46 -0400 |
commit | 7a2e1b14095ecfdf092313c7ea36a9831d9e384a (patch) | |
tree | 9f9949e34d7c8455165641649a3e433d350b6d92 /src | |
parent | 037a28c3d2bc5bf4a3f36b0172e83e6515b05a68 (diff) |
src/udev/udev-ctrl.c: explicitly declare return value
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/udev/udev-ctrl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-ctrl.c b/src/udev/udev-ctrl.c index 138b6f44b7..b71494ea15 100644 --- a/src/udev/udev-ctrl.c +++ b/src/udev/udev-ctrl.c @@ -178,7 +178,7 @@ int udev_ctrl_get_fd(struct udev_ctrl *uctrl) return uctrl->sock; } -static inline accept4_fallback(int sockfd) +static inline int accept4_fallback(int sockfd) { int fd; |