Fix bogus assumption that sizeof() produces an int-sized result.

This commit is contained in:
Tom Lane 2005-06-20 00:32:22 +00:00
parent 577247b023
commit 368739dca8

View File

@ -82,10 +82,10 @@ gtsvector_out(PG_FUNCTION_ARGS)
outbuf = palloc( outbuf_maxlen );
if ( ISARRKEY(key) )
sprintf( outbuf, ARROUTSTR, ARRNELEM(key) );
sprintf( outbuf, ARROUTSTR, (int) ARRNELEM(key) );
else {
int cnttrue = ( ISALLTRUE(key) ) ? SIGLENBIT : sizebitvec(GETSIGN(key));
sprintf( outbuf, SINGOUTSTR, cnttrue, SIGLENBIT - cnttrue );
sprintf( outbuf, SINGOUTSTR, cnttrue, (int) SIGLENBIT - cnttrue );
}
PG_FREE_IF_COPY(key,0);