Index: ossp-pkg/uuid/pgsql/uuid.c RCS File: /v/ossp/cvs/ossp-pkg/uuid/pgsql/Attic/uuid.c,v rcsdiff -q -kk '-r1.6' '-r1.7' -u '/v/ossp/cvs/ossp-pkg/uuid/pgsql/Attic/uuid.c,v' 2>/dev/null --- uuid.c 2006/11/20 19:21:47 1.6 +++ uuid.c 2006/11/20 19:24:12 1.7 @@ -84,7 +84,7 @@ errmsg("invalid UUID string"))); if ((len = strlen(uuid_str)) != UUID_LEN_STR) ereport(ERROR, (errcode(ERRCODE_DATA_EXCEPTION), - errmsg("invalid UUID string length %d (expected %d)", len, UUID_LEN_STR))); + errmsg("invalid UUID string length %d (expected %d)", (int)len, UUID_LEN_STR))); /* import as string representation */ if ((rc = uuid_create(&uuid)) != UUID_RC_OK)