Remove superfluous test for == NULL, when variable has been used, anyway

This commit is contained in:
erdgeist 2009-03-03 01:22:50 +00:00
parent 02078aba27
commit a6fe338040

View File

@ -98,7 +98,7 @@ struct ot_peerlist {
*/ */
ot_vector peers; ot_vector peers;
}; };
#define OT_PEERLIST_HASBUCKETS(peer_list) ((peer_list) && ((peer_list)->peers.size > (peer_list)->peers.space)) #define OT_PEERLIST_HASBUCKETS(peer_list) ((peer_list)->peers.size > (peer_list)->peers.space)
struct ot_workstruct { struct ot_workstruct {
/* Thread specific, static */ /* Thread specific, static */