diff options
| author | Bruce Momjian | 2000-05-16 20:48:52 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2000-05-16 20:48:52 +0000 |
| commit | 61190ea031ef5040aaa221ce69c2ef550ba87e53 (patch) | |
| tree | 51336d1a759a26396c5024863d80144bed5b274d /lobj.c | |
| parent | cba16a6361253a9c24eab833114c241ca886443a (diff) | |
Several compilation and run-time problems occur when building on SGI
IRIX systems using the native compilers. A summary is:
- Various files use "//" as a comment delimiter in c files.
- Problems caused by assuming "char" is signed.
cash.in: building -signed the rules regression test fails as described
in FAQ_QNX4. If CHAR_MAX is "255U" then ((signed char)CHAR_MAX) is -1.
postmaster.c: random number regression test failed without this change.
- Some generic build issues and warning message cleanup.
David Kaelbling
Diffstat (limited to 'lobj.c')
| -rw-r--r-- | lobj.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ int retval, result_len; argv[0].u.integer = mode; if ( ! CC_send_function(conn, LO_CREAT, &retval, &result_len, 1, argv, 1)) - return 0; // invalid oid + return 0; /* invalid oid */ else return retval; |
