diff options
author | Cosimo Cecchi <cosimoc@gnome.org> | 2011-01-24 17:19:00 +0100 |
---|---|---|
committer | Cosimo Cecchi <cosimoc@gnome.org> | 2011-01-25 09:21:07 -0500 |
commit | d4230de8667764e02dbb966b5d806ff78ced2fd5 (patch) | |
tree | 994b16b22b063203536cb4aa7cfc85f2e24f9904 /src/nautilus-main.c | |
parent | 155cc03271fd7db1da4af7d60dcedfe8acdc2900 (diff) | |
download | nautilus-d4230de8667764e02dbb966b5d806ff78ced2fd5.tar.gz |
all: silence new warnings from GCC 4.6
GCC 4.6 introduced a new warning about variables declared and
initialized, but not really used in the function body. Remove all of
these occurrences to build cleanly.
Diffstat (limited to 'src/nautilus-main.c')
-rw-r--r-- | src/nautilus-main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nautilus-main.c b/src/nautilus-main.c index d11f29f88..43e44cb67 100644 --- a/src/nautilus-main.c +++ b/src/nautilus-main.c @@ -106,5 +106,5 @@ main (int argc, char *argv[]) eel_debug_shut_down (); - return EXIT_SUCCESS; + return retval; } |