summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2003-07-04 15:11:46 +0000
committerWayne Davison <wayned@samba.org>2003-07-04 15:11:46 +0000
commit0f5a04e3ffe2e959e8eab4d65ab99cd1ec1f4aef (patch)
tree344bc3e68e7b0d6eba584b1d54687181c7f64b98 /main.c
parent8801138b474c9f8c233eabcbfe49b8e1ae95958e (diff)
downloadrsync-0f5a04e3ffe2e959e8eab4d65ab99cd1ec1f4aef.tar.gz
rsync-0f5a04e3ffe2e959e8eab4d65ab99cd1ec1f4aef.tar.bz2
rsync-0f5a04e3ffe2e959e8eab4d65ab99cd1ec1f4aef.zip
Use "return" at the end of main() to silence some compilers.
Diffstat (limited to 'main.c')
-rw-r--r--main.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/main.c b/main.c
index 79929d65..629eb35b 100644
--- a/main.c
+++ b/main.c
@@ -1056,6 +1056,5 @@ int main(int argc,char *argv[])
else
exit_cleanup(ret);
- exit(ret);
- /* NOTREACHED */
+ return ret;
}