diff options
Diffstat (limited to 'contrib/ltree/ltree_io.c')
-rw-r--r-- | contrib/ltree/ltree_io.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/ltree/ltree_io.c b/contrib/ltree/ltree_io.c index d0a8c20903e..ccc6fc8ff71 100644 --- a/contrib/ltree/ltree_io.c +++ b/contrib/ltree/ltree_io.c @@ -82,7 +82,7 @@ ltree_in(PG_FUNCTION_ARGS) errmsg("name of level is too long"), errdetail("name length is %d, must " \ "be < 256, in position %d", - lptr->len, (int) (lptr->start - buf)))); + lptr->len, (int) (lptr->start - buf)))); totallen += MAXALIGN(lptr->len + LEVEL_HDRSIZE); lptr++; @@ -284,7 +284,7 @@ lquery_in(PG_FUNCTION_ARGS) errmsg("name of level is too long"), errdetail("name length is %d, must " \ "be < 256, in position %d", - lptr->len, (int) (lptr->start - buf)))); + lptr->len, (int) (lptr->start - buf)))); state = LQPRS_WAITVAR; } @@ -300,7 +300,7 @@ lquery_in(PG_FUNCTION_ARGS) errmsg("name of level is too long"), errdetail("name length is %d, must " \ "be < 256, in position %d", - lptr->len, (int) (lptr->start - buf)))); + lptr->len, (int) (lptr->start - buf)))); state = LQPRS_WAITLEVEL; curqlevel = NEXTLEV(curqlevel); |