From 3faa9bab07ab781aa71ea1a3819a30a184e5bdab Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 17 Mar 2000 23:26:36 +0000 Subject: Patch possible portability problem: a few places had // style comments, which is not ANSI C, even though some compilers will take it... --- src/interfaces/ecpg/lib/data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/interfaces/ecpg/lib/data.c') diff --git a/src/interfaces/ecpg/lib/data.c b/src/interfaces/ecpg/lib/data.c index e9b01c385e9..b7398caf6d7 100644 --- a/src/interfaces/ecpg/lib/data.c +++ b/src/interfaces/ecpg/lib/data.c @@ -185,7 +185,7 @@ get_data(PGresult *results, int act_tuple, int act_field, int lineno, } else if (pval[0] == '\0' && PQgetisnull(results, act_tuple, act_field)) { - // NULL is valid + /* NULL is valid */ break; } } -- cgit v1.2.3