diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-03-17 02:36:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-03-17 02:36:41 +0000 |
commit | 341b328b180e65d1fa5c8f2235cf101c8a12824f (patch) | |
tree | 88d54198ffa15aea581251471f8c062ae9e3142e /src/backend/nodes/readfuncs.c | |
parent | bc1f117094fbe2921f37923d8f7528284cb26dfc (diff) | |
download | postgresql-341b328b180e65d1fa5c8f2235cf101c8a12824f.tar.gz postgresql-341b328b180e65d1fa5c8f2235cf101c8a12824f.zip |
Fix a bunch of minor portability problems and maybe-bugs revealed by
running gcc and HP's cc with warnings cranked way up. Signed vs unsigned
comparisons, routines declared static and then defined not-static,
that kind of thing. Tedious, but perhaps useful...
Diffstat (limited to 'src/backend/nodes/readfuncs.c')
-rw-r--r-- | src/backend/nodes/readfuncs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c index dfbdbef9884..eba45276c6f 100644 --- a/src/backend/nodes/readfuncs.c +++ b/src/backend/nodes/readfuncs.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.85 2000/02/20 21:32:05 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.86 2000/03/17 02:36:12 tgl Exp $ * * NOTES * Most of the read functions for plan nodes are tested. (In fact, they @@ -1952,11 +1952,11 @@ readDatum(Oid type) if (byValue) { - if (length > sizeof(Datum)) + if ((Size) length > sizeof(Datum)) elog(ERROR, "readValue: byval & length = %d", length); res = (Datum) 0; s = (char *) (&res); - for (i = 0; i < sizeof(Datum); i++) + for (i = 0; i < (int) sizeof(Datum); i++) { token = lsptok(NULL, &tokenLength); s[i] = (char) atoi(token); |