diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-07-01 19:58:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-07-01 19:58:23 +0000 |
commit | cc3002313f9a0b9e1cd562da117c774885a65a0b (patch) | |
tree | 3ed96a6cc678c33bb62b11d7cf6c6954fa8d84f0 /src | |
parent | e3b1b6c0cdc1ceda26053573af1da4f35ee8566d (diff) | |
download | postgresql-cc3002313f9a0b9e1cd562da117c774885a65a0b.tar.gz postgresql-cc3002313f9a0b9e1cd562da117c774885a65a0b.zip |
Fix ecpg typo --- change ;; to ;.
Diffstat (limited to 'src')
-rw-r--r-- | src/interfaces/ecpg/compatlib/informix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/compatlib/informix.c b/src/interfaces/ecpg/compatlib/informix.c index 3bdbce693e0..889faf54409 100644 --- a/src/interfaces/ecpg/compatlib/informix.c +++ b/src/interfaces/ecpg/compatlib/informix.c @@ -311,7 +311,7 @@ dectoasc(Decimal *np, char *cp, int len, int right) int dectodbl(Decimal *np, double *dblp) { - Numeric *nres = PGTYPESnumeric_new();; + Numeric *nres = PGTYPESnumeric_new(); int i; if (nres == NULL) |