diff options
author | Jim Meyering <meyering@redhat.com> | 2009-08-17 09:15:34 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-08-17 11:40:24 +0200 |
commit | d7569c00787fb92a8cd2f08c537ea1662f987901 (patch) | |
tree | e20e0a07b73f8fff99e5b3d611e0db082751dea0 /daemon/sync.c | |
parent | 7793f8eda6b26002cb751503928e06f7b9c4a7d2 (diff) | |
download | libguestfs-d7569c00787fb92a8cd2f08c537ea1662f987901.tar.gz libguestfs-d7569c00787fb92a8cd2f08c537ea1662f987901.tar.xz libguestfs-d7569c00787fb92a8cd2f08c537ea1662f987901.zip |
avoid warning about old-style no-param function definition
* daemon/df.c (do_df, do_df_h): Add "void".
* sync.c (do_sync): Likewise.
Diffstat (limited to 'daemon/sync.c')
-rw-r--r-- | daemon/sync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/sync.c b/daemon/sync.c index b353b6c6..e96bf032 100644 --- a/daemon/sync.c +++ b/daemon/sync.c @@ -24,7 +24,7 @@ #include "actions.h" int -do_sync () +do_sync (void) { sync (); return 0; |