diff options
author | Steve Dickson <steved@redhat.com> | 2015-11-04 16:25:28 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2015-11-04 16:25:28 -0500 |
commit | 19e6ba690c7e9674dae006cfce89f638c8d8edab (patch) | |
tree | 18ee09b2518258e2d71a6b1aa1057f9fc799763a /support/nfs/mydaemon.c | |
parent | 42536414deb28ba41079b9dc01be2834fd5d4a26 (diff) | |
download | nfs-utils-19e6ba690c7e9674dae006cfce89f638c8d8edab.tar.gz nfs-utils-19e6ba690c7e9674dae006cfce89f638c8d8edab.tar.xz nfs-utils-19e6ba690c7e9674dae006cfce89f638c8d8edab.zip |
mydaemon.c: Removed a warning
Commit 273b4647 introduced the following warning:
mydaemon.c:125:2: warning: implicit declaration of function 'closelog'
[-Wimplicit-function-declaration]
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'support/nfs/mydaemon.c')
-rw-r--r-- | support/nfs/mydaemon.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/support/nfs/mydaemon.c b/support/nfs/mydaemon.c index 701cfd9..343e80b 100644 --- a/support/nfs/mydaemon.c +++ b/support/nfs/mydaemon.c @@ -49,6 +49,7 @@ #include <stdbool.h> #include <stdlib.h> #include <string.h> +#include <syslog.h> #include <xlog.h> #include "nfslib.h" |