aboutsummaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/lib/data.c
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-03-17 23:26:36 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-03-17 23:26:36 +0000
commit3faa9bab07ab781aa71ea1a3819a30a184e5bdab (patch)
tree1ec505707c66e73387f7a4b46ae2ce2d1165bd14 /src/interfaces/ecpg/lib/data.c
parent64ef5c82de288c05191551c8d3ee2fe2f404ab5c (diff)
downloadpostgresql-3faa9bab07ab781aa71ea1a3819a30a184e5bdab.tar.gz
postgresql-3faa9bab07ab781aa71ea1a3819a30a184e5bdab.zip
Patch possible portability problem: a few places had // style comments,
which is not ANSI C, even though some compilers will take it...
Diffstat (limited to 'src/interfaces/ecpg/lib/data.c')
-rw-r--r--src/interfaces/ecpg/lib/data.c2
1 files changed, 1 insertions, 1 deletions
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;
}
}