ossp-pkg/uuid/pgsql/uuid.c 1.6 -> 1.7
--- 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)
|
|