typo in src/include/utils/array.h

From: Weiping He <laser(at)zhengmai(dot)com(dot)cn>
To: pgsql-patches(at)postgresql(dot)org
Subject: typo in src/include/utils/array.h
Date: 2003-07-09 17:13:26
Message-ID: 3F0C4D36.5090900@zhengmai.com.cn
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

seems the comment of macro ARR_LBOUND missed '(a)',
here is the diff:

*** array.h.old Thu Jul 10 01:01:42 2003
--- array.h Thu Jul 10 01:01:53 2003
***************
*** 81,87 ****
* ARR_LBOUND returns a pointer to an array of array lower bounds.
*
* That is: if the third axis of an array has elements 5 through 10, then
! * ARR_DIMS(a)[2] == 6 and ARR_LBOUND[2] == 5.
*
* Unlike C, the default lower bound is 1.
*/
--- 81,87 ----
* ARR_LBOUND returns a pointer to an array of array lower bounds.
*
* That is: if the third axis of an array has elements 5 through 10, then
! * ARR_DIMS(a)[2] == 6 and ARR_LBOUND(a)[2] == 5.
*
* Unlike C, the default lower bound is 1.
*/

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Bruce Momjian 2003-07-09 17:58:47 Re: fix for new SUSET GUC variables
Previous Message Aizaz Ahmed 2003-07-09 13:55:16 Re: fix for new SUSET GUC variables