Re: [HACKERS] I can't compile cvs snapshot ...

From: Tatsuo Ishii <t-ishii(at)sra(dot)co(dot)jp>
To: David Sauer <davids(at)orfinet(dot)cz>
Cc: pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] I can't compile cvs snapshot ...
Date: 1999-05-26 01:08:57
Message-ID: 199905260108.KAA01177@ext16.sra.co.jp
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> The problem is with file conv.c in backend/utils/mb/
> ....
> big52mic(unsigned char *big5, unsigned char *p, int len)
>
> unsigned short c1;
> unsigned short big5buf,
> cnsBuf;
> unsigned char lc;
> char bogusBuf[2];
> int i;
>
> while (len > 0 && (c1 = *big5++))
> {
> if (c1 <= 0x007f U)
> ^^^^ my egcs 1.1.2 on linux(rh6.0) doesn't
> accept this space. Should be
> (probably) 0x007fU

Before it was "0x007fU" and now is "0x007f U". Probably pgindent did
something.

>This seems like the intent, and pgindent doesn't like the old format.

Does this mean we are not allowed to use "U"? I think this is leagal
according to the standard C grammer.
---
Tatsuo Ishii

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Thomas Lockhart 1999-05-26 02:07:50 Re: supported platform list
Previous Message Thomas A. Szybist 1999-05-26 00:37:58 Re: [HACKERS] Problem in S_LOCK?