diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-31 17:30:51 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-31 17:30:51 +0100 |
commit | d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb (patch) | |
tree | f33b2f999a51f5ecd5b42c01b0d837ab8e660b44 /src/po/sjiscorr.c | |
parent | bbb3339dbfa2067fab616698739097df06aa5e6c (diff) | |
download | vim-d14e00ea67afbaa8cb4a7e6b1eb306da6a2d5adb.zip |
patch 7.4.1225
Problem: Still a few old style function declarations.
Solution: Make them new style. (Hirohito Higashi)
Diffstat (limited to 'src/po/sjiscorr.c')
-rw-r--r-- | src/po/sjiscorr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/po/sjiscorr.c b/src/po/sjiscorr.c index a0b09f02f..2f55b9ec3 100644 --- a/src/po/sjiscorr.c +++ b/src/po/sjiscorr.c @@ -7,7 +7,7 @@ #include <string.h> int -main(int argc, char **argv); +main(int argc, char **argv) { char buffer[BUFSIZ]; char *p; |