From: David M. <da...@da...> - 2019-11-20 20:08:28
|
From: Tuong Lien <tuo...@de...> Date: Wed, 20 Nov 2019 09:15:19 +0700 > @@ -277,6 +283,17 @@ static struct publication *tipc_service_remove_publ(struct service_range *sr, > return NULL; > } > > +#define publication_after(pa, pb) (((int)((pb)->id - (pa)->id) < 0)) We have enough of these things, please use existing interfaces such as time32_after() et al. Thank you. |