Commit d0b54441 authored by Neil Conway's avatar Neil Conway

Fix C++-style comment.

parent 1abf76e8
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE. * 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" #include "postgres.h"
...@@ -47,7 +47,7 @@ static void mp_clear_free(mpz_t *a) ...@@ -47,7 +47,7 @@ static void mp_clear_free(mpz_t *a)
{ {
if (!a) if (!a)
return; return;
// fixme: no clear? /* fixme: no clear? */
mp_int_free(a); mp_int_free(a);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment