Re: [HACKERS] I can't compile cvs snapshot ...
От | Bruce Momjian |
---|---|
Тема | Re: [HACKERS] I can't compile cvs snapshot ... |
Дата | |
Msg-id | 199905252147.RAA05536@candle.pha.pa.us обсуждение исходный текст |
Ответ на | I can't compile cvs snapshot ... (David Sauer <davids@orfinet.cz>) |
Список | 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 > ...... > > The same problem repeats on some more places. OK, I have changed it to: 0x007f -> (unsigned)0x7f This seems like the intent, and pgindent doesn't like the old format. -- Bruce Momjian | http://www.op.net/~candle maillist@candle.pha.pa.us | (610) 853-3000+ If your life is a hard drive, | 830 Blythe Avenue + Christ can be your backup. | Drexel Hill, Pennsylvania19026
В списке pgsql-hackers по дате отправления: