Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit de94b47

Browse files
committed
Fix whitespace
1 parent f8ce16d commit de94b47

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/bin/pg_ctl/pg_ctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ free_readfile(char **optlines)
383383

384384
while (optlines[i++])
385385
free(optlines[i]);
386-
386+
387387
free(optlines);
388388

389389
return;

src/interfaces/ecpg/preproc/variable.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ dump_variables(struct arguments * list, int mode)
456456
/* Then release the list element. */
457457
if (mode != 0)
458458
free(list);
459-
459+
460460
free(str_zero);
461461
}
462462

src/interfaces/libpq/fe-exec.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2760,7 +2760,7 @@ PQfnumber(const PGresult *res, const char *field_name)
27602760
for (i = 0; i < res->numAttributes; i++)
27612761
if (strcmp(field_name, res->attDescs[i].name) == 0)
27622762
return i;
2763-
2763+
27642764
/* Fall through to the normal check if that didn't work out. */
27652765

27662766
/*

src/test/regress/pg_regress.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ get_alternative_expectfile(const char *expectfile, int i)
11591159

11601160
if (!(tmp = (char*) malloc(ssize)))
11611161
return NULL;
1162-
1162+
11631163
if (!(s = (char*) malloc(ssize)))
11641164
{
11651165
free(tmp);

0 commit comments

Comments
 (0)