diff runtime/tools/ccfilter.c @ 7842:cf744110897d v7.4.1218

commit https://github.com/vim/vim/commit/779a7759ad03e6a3fb616828793512644390655a Author: Bram Moolenaar <Bram@vim.org> Date: Sat Jan 30 23:26:34 2016 +0100 patch 7.4.1218 Problem: Missing change in configure. More changes for function style. Solution: Avoid the typos.
author Christian Brabandt <cb@256bit.org>
date Sat, 30 Jan 2016 23:30:05 +0100
parents 3fc0f57ecb91
children 071f9da012fb
line wrap: on
line diff
--- 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);