stagit
Personal fork of stagit
git clone git://mccd.space/stagit
| Log | Files | Refs | README | LICENSE |
commit 9467f347a2224ac95b96ef5c74d50a4e2aad5241 parent 3e7865f8f9ef87f622a7a94e7ae70355753ee66a Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Sun, 15 Nov 2020 20:58:41 +0100 refs_cmp: remove unneeded cast Diffstat:
| M | stagit.c | | | 3 | +-- |
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/stagit.c b/stagit.c
@@ -253,8 +253,7 @@ err:
int
refs_cmp(const void *v1, const void *v2)
{
- struct referenceinfo *r1 = (struct referenceinfo *)v1;
- struct referenceinfo *r2 = (struct referenceinfo *)v2;
+ const struct referenceinfo *r1 = v1, *r2 = v2;
time_t t1, t2;
int r;