1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-07 00:36:50 +03:00

Patch possible portability problem: a few places had // style comments,

which is not ANSI C, even though some compilers will take it...
This commit is contained in:
Tom Lane
2000-03-17 23:26:36 +00:00
parent 64ef5c82de
commit 3faa9bab07
5 changed files with 9 additions and 9 deletions

View File

@ -2,7 +2,7 @@
*
* Copyright (c) 2000, Christof Petig <christof.petig@wtal.de>
*
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/test/Attic/dyntest.pgc,v 1.5 2000/03/03 13:24:06 meskes Exp $
* $Header: /cvsroot/pgsql/src/interfaces/ecpg/test/Attic/dyntest.pgc,v 1.6 2000/03/17 23:26:36 tgl Exp $
*/
#include <stdio.h>
@ -139,7 +139,7 @@ int main(int argc,char **argv)
break;
case SQL3_NUMERIC:
case SQL3_DECIMAL:
if (SCALE==0) // we might even print leading zeros "%0*d"
if (SCALE==0) /* we might even print leading zeros "%0*d" */
{ exec sql get descriptor MYDESC value :INDEX :INTVAR=data;
printf("%*d",PRECISION,INTVAR);
}