From d4cdbab99b8ead6ae2462d6b452f8b2462ca8733 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 4 Jul 2008 23:12:52 +0000 Subject: Avoid warnings with -pedantic, specifically: Conversion between void * and function pointer. Value computed not used. Signed/unsigned argument. --- crypto/txt_db/txt_db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crypto/txt_db/txt_db.c') diff --git a/crypto/txt_db/txt_db.c b/crypto/txt_db/txt_db.c index 3da50e86ab..7e33f143cb 100644 --- a/crypto/txt_db/txt_db.c +++ b/crypto/txt_db/txt_db.c @@ -334,7 +334,7 @@ int TXT_DB_insert(TXT_DB *db, STRING *row) { if ((db->qual[i] != NULL) && (db->qual[i](row) == 0)) continue; - lh_STRING_insert(db->index[i],row); + (void)lh_STRING_insert(db->index[i],row); } } return(1); -- cgit v1.2.3