commit | b638a7be952544ceb03052c25b84224577a6494b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jan 30 21:29:58 2016 +0100 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jan 30 21:29:58 2016 +0100 |
tree | 4a37ca954a03fba25f9e7a81b7f54cf23c1013cb | |
parent | 764b23c8fd3369cb05ae9122abf3ca16fec539d7 [diff] [blame] |
patch 7.4.1215 Problem: Using old style function declarations. Solution: Change to new style function declarations. (script by Hirohito Higashi)
diff --git a/src/po/sjiscorr.c b/src/po/sjiscorr.c index b8f7e63..a0b09f0 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;