diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-06-06 07:10:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:33 -0500 |
commit | 7ea6a0b1fc3e5f35e5096ad820053d54c4496a09 (patch) | |
tree | d3586c53f0f6aadc7a5bb2a51eb91291d34a5a69 | |
parent | 79b040919895cc9892d93968cbcc2aaa13c044e9 (diff) | |
download | samba-7ea6a0b1fc3e5f35e5096ad820053d54c4496a09.tar.gz samba-7ea6a0b1fc3e5f35e5096ad820053d54c4496a09.tar.bz2 samba-7ea6a0b1fc3e5f35e5096ad820053d54c4496a09.zip |
r1040: make sure main() doesn't get auto-prototyped
(This used to be commit 7c2279e4bc631d88e402ac82c6c17fb811785394)
-rw-r--r-- | source4/lib/registry/tools/regdiff.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/tools/regdiff.c b/source4/lib/registry/tools/regdiff.c index b599a54c2e..c46411ae31 100644 --- a/source4/lib/registry/tools/regdiff.c +++ b/source4/lib/registry/tools/regdiff.c @@ -91,7 +91,7 @@ static void writediff(REG_KEY *oldkey, REG_KEY *newkey, FILE *out) } } -int main(int argc, char **argv) + int main(int argc, char **argv) { int opt; poptContext pc; |