diff options
author | Andrew Tridgell <tridge@samba.org> | 2002-04-24 09:51:14 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2002-04-24 09:51:14 +0000 |
commit | 6e1c478082b23551285ad28a0790a57536af2817 (patch) | |
tree | bfedb74c3fb266a7f74b207c8c91a7464dcaf0be | |
parent | d4034d796fc48b3df471453b0971a65ef45f0148 (diff) | |
download | samba-6e1c478082b23551285ad28a0790a57536af2817.tar.gz samba-6e1c478082b23551285ad28a0790a57536af2817.tar.bz2 samba-6e1c478082b23551285ad28a0790a57536af2817.zip |
main() needs to be indented to make sure it doesn't generate a
prototype
(This used to be commit fdfde9b84cf825d84316344fea5af43a9b8ebcc9)
-rw-r--r-- | source3/nsswitch/winbindd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nsswitch/winbindd.c b/source3/nsswitch/winbindd.c index b198b4a163..2c88d11cae 100644 --- a/source3/nsswitch/winbindd.c +++ b/source3/nsswitch/winbindd.c @@ -739,7 +739,7 @@ static void usage(void) printf("\t-h show this help message\n"); } -int main(int argc, char **argv) + int main(int argc, char **argv) { extern BOOL AllowDebugChange; extern pstring global_myname; |