1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-21 02:52:47 +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

@@ -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;
}
}