1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-05 02:22:28 +03:00

Fixed a few minor glitches pointed out by splint.

This commit is contained in:
Michael Meskes
2007-12-21 14:33:20 +00:00
parent 7b009a2a9d
commit 51a5921dcc
6 changed files with 20 additions and 16 deletions

View File

@@ -1,10 +1,10 @@
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/variable.c,v 1.42 2007/08/14 10:01:53 meskes Exp $ */
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/variable.c,v 1.43 2007/12/21 14:33:20 meskes Exp $ */
#include "postgres_fe.h"
#include "extern.h"
struct variable *allvariables = NULL;
static struct variable *allvariables = NULL;
struct variable *
new_variable(const char *name, struct ECPGtype * type, int brace_level)