aboutsummaryrefslogtreecommitdiff
path: root/contrib/pgcrypto/pgp-mpi-internal.c
diff options
context:
space:
mode:
authorNeil Conway <neilc@samurai.com>2006-07-13 04:52:51 +0000
committerNeil Conway <neilc@samurai.com>2006-07-13 04:52:51 +0000
commitd0b54441dbf323f0b6fd210089ff7eb90a1c9ec0 (patch)
treee886cfa138d3f2d568db969c4643fb59883f919f /contrib/pgcrypto/pgp-mpi-internal.c
parent1abf76e82cbb5c09f5517d155ea404727f67a507 (diff)
downloadpostgresql-d0b54441dbf323f0b6fd210089ff7eb90a1c9ec0.tar.gz
postgresql-d0b54441dbf323f0b6fd210089ff7eb90a1c9ec0.zip
Fix C++-style comment.
Diffstat (limited to 'contrib/pgcrypto/pgp-mpi-internal.c')
-rw-r--r--contrib/pgcrypto/pgp-mpi-internal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pgcrypto/pgp-mpi-internal.c b/contrib/pgcrypto/pgp-mpi-internal.c
index 3292548e1f4..4f2e5ec9626 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);
}