From: Neil Conway Date: Thu, 13 Jul 2006 04:52:51 +0000 (+0000) Subject: Fix C++-style comment. X-Git-Tag: REL8_2_BETA1~580 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0b54441dbf323f0b6fd210089ff7eb90a1c9ec0;p=postgresql Fix C++-style comment. --- diff --git a/contrib/pgcrypto/pgp-mpi-internal.c b/contrib/pgcrypto/pgp-mpi-internal.c index 3292548e1f..4f2e5ec962 100644 --- a/contrib/pgcrypto/pgp-mpi-internal.c +++ b/contrib/pgcrypto/pgp-mpi-internal.c @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-mpi-internal.c,v 1.5 2006/07/13 04:15:25 neilc Exp $ + * $PostgreSQL: pgsql/contrib/pgcrypto/pgp-mpi-internal.c,v 1.6 2006/07/13 04:52:51 neilc Exp $ */ #include "postgres.h" @@ -47,7 +47,7 @@ static void mp_clear_free(mpz_t *a) { if (!a) return; - // fixme: no clear? + /* fixme: no clear? */ mp_int_free(a); }