diff options
author | Wayne Davison <wayned@samba.org> | 2003-07-04 15:11:46 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2003-07-04 15:11:46 +0000 |
commit | 0f5a04e3ffe2e959e8eab4d65ab99cd1ec1f4aef (patch) | |
tree | 344bc3e68e7b0d6eba584b1d54687181c7f64b98 /main.c | |
parent | 8801138b474c9f8c233eabcbfe49b8e1ae95958e (diff) | |
download | rsync-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.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1056,6 +1056,5 @@ int main(int argc,char *argv[]) else exit_cleanup(ret); - exit(ret); - /* NOTREACHED */ + return ret; } |