at 23.11-beta 28 lines 651 B view raw
1From 59d91e57d103fb4686d2f45ee3c688878244367a Mon Sep 17 00:00:00 2001 2From: Christian Kampka <christian@kampka.net> 3Date: Tue, 24 Nov 2020 22:12:40 +0100 4Subject: [PATCH] Remove unused function 'after_eq' 5 6--- 7 keyctl_watch.c | 5 ----- 8 1 file changed, 5 deletions(-) 9 10diff --git a/keyctl_watch.c b/keyctl_watch.c 11index a70a19a..c4ca7f7 100644 12--- a/keyctl_watch.c 13+++ b/keyctl_watch.c 14@@ -47,11 +47,6 @@ static struct watch_notification_filter filter = { 15 }, 16 }; 17 18-static inline bool after_eq(unsigned int a, unsigned int b) 19-{ 20- return (signed int)(a - b) >= 0; 21-} 22- 23 static void consumer_term(int sig) 24 { 25 consumer_stop = 1; 26-- 272.28.0 28