diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-30 21:29:58 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-30 21:29:58 +0100 |
commit | b638a7be952544ceb03052c25b84224577a6494b (patch) | |
tree | 4a37ca954a03fba25f9e7a81b7f54cf23c1013cb /src/po/sjiscorr.c | |
parent | 764b23c8fd3369cb05ae9122abf3ca16fec539d7 (diff) | |
download | vim-git-b638a7be952544ceb03052c25b84224577a6494b.tar.gz |
patch 7.4.1215v7.4.1215
Problem: Using old style function declarations.
Solution: Change to new style function declarations. (script by Hirohito
Higashi)
Diffstat (limited to 'src/po/sjiscorr.c')
-rw-r--r-- | src/po/sjiscorr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/po/sjiscorr.c b/src/po/sjiscorr.c index b8f7e632a..a0b09f02f 100644 --- a/src/po/sjiscorr.c +++ b/src/po/sjiscorr.c @@ -7,9 +7,7 @@ #include <string.h> int -main(argc, argv) - int argc; - char **argv; +main(int argc, char **argv); { char buffer[BUFSIZ]; char *p; |