patch 7.4.1218

Problem:    Missing change in configure.  More changes for function style.
Solution:   Avoid the typos.
This commit is contained in:
Bram Moolenaar
2016-01-30 23:26:34 +01:00
parent 20fb9f3464
commit 779a7759ad
5 changed files with 25 additions and 15 deletions

View File

@ -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);