nixpkgs/pkgs/by-name/ke/keyutils/0001-Remove-unused-function-after_eq.patch
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

29 lines
651 B
Diff

From 59d91e57d103fb4686d2f45ee3c688878244367a Mon Sep 17 00:00:00 2001
From: Christian Kampka <christian@kampka.net>
Date: Tue, 24 Nov 2020 22:12:40 +0100
Subject: [PATCH] Remove unused function 'after_eq'
---
keyctl_watch.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/keyctl_watch.c b/keyctl_watch.c
index a70a19a..c4ca7f7 100644
--- a/keyctl_watch.c
+++ b/keyctl_watch.c
@@ -47,11 +47,6 @@ static struct watch_notification_filter filter = {
},
};
-static inline bool after_eq(unsigned int a, unsigned int b)
-{
- return (signed int)(a - b) >= 0;
-}
-
static void consumer_term(int sig)
{
consumer_stop = 1;
--
2.28.0