diff options
author | Benjamin Otte <otte@gnome.org> | 2008-02-28 11:34:24 +0000 |
---|---|---|
committer | Benjamin Otte <otte@src.gnome.org> | 2008-02-28 11:34:24 +0000 |
commit | 690fb88b44820d2ba90f2839b77ea0542477ad1d (patch) | |
tree | 97eae95ee8735d59590b32b40f055f7326e0ebcc /test | |
parent | 90d651648d846b6160f4600a27174766c5c3a939 (diff) | |
download | gvfs-690fb88b44820d2ba90f2839b77ea0542477ad1d.tar.gz |
gcc warning fixes to be able to compile with -Werror: mark
2008-02-28 Benjamin Otte <otte@gnome.org>
gcc warning fixes to be able to compile with -Werror:
* daemon/gvfsbackendburn.c:
mark virtual_node_ref as unused, because it is
* test/benchmark-common.c: (benchmark_timeout):
signal handlers take an int argument.
svn path=/trunk/; revision=1417
Diffstat (limited to 'test')
-rw-r--r-- | test/benchmark-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/benchmark-common.c b/test/benchmark-common.c index a704f35c..d07ac8e8 100644 --- a/test/benchmark-common.c +++ b/test/benchmark-common.c @@ -178,7 +178,7 @@ benchmark_quit_main_loop (void) } static void -benchmark_timeout (void) +benchmark_timeout (int signal) { benchmark_is_running = FALSE; } |