summaryrefslogtreecommitdiffstats
path: root/runtime/tools
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-01-30 23:26:34 +0100
committerBram Moolenaar <Bram@vim.org>2016-01-30 23:26:34 +0100
commit779a7759ad03e6a3fb616828793512644390655a (patch)
treed15302b2d5ac0cf7fa2fe52fd36e5e1848594151 /runtime/tools
parent20fb9f346497daca4d19402fdfa5de7958642477 (diff)
patch 7.4.1218v7.4.1218
Problem: Missing change in configure. More changes for function style. Solution: Avoid the typos.
Diffstat (limited to 'runtime/tools')
-rw-r--r--runtime/tools/ccfilter.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/tools/ccfilter.c b/runtime/tools/ccfilter.c
index 270333910f..f5d560dbad 100644
--- a/runtime/tools/ccfilter.c
+++ b/runtime/tools/ccfilter.c
@@ -85,7 +85,8 @@ const char USAGE[] =
int ShowUsage( char *szError )
-{ int i;
+{
+ int i;
fprintf( stderr, USAGE );
@@ -101,7 +102,8 @@ int ShowUsage( char *szError )
return 0;
}
-char *echogets(char *s, int echo) {
+char *echogets(char *s, int echo)
+{
char * const retval=fgets(s, LINELENGTH, stdin);
if (echo!=0 && retval!=NULL) {
fputs(retval, stderr);