diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2008-07-05 01:12:52 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2008-07-05 01:12:52 +0200 |
commit | d4cdbab99b8ead6ae2462d6b452f8b2462ca8733 (patch) | |
tree | 293758bf967241b3621e2cc8af8d52907c06ff07 /crypto/txt_db | |
parent | Revert my earlier CRYPTO_THREADID commit, I will commit a reworked (diff) | |
download | openssl-d4cdbab99b8ead6ae2462d6b452f8b2462ca8733.tar.xz openssl-d4cdbab99b8ead6ae2462d6b452f8b2462ca8733.zip |
Avoid warnings with -pedantic, specifically:
Conversion between void * and function pointer.
Value computed not used.
Signed/unsigned argument.
Diffstat (limited to 'crypto/txt_db')
-rw-r--r-- | crypto/txt_db/txt_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |