pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_install/files/add pkg_install: add a cast...
details: https://anonhg.NetBSD.org/pkgsrc/rev/ec93651cd64f
branches: trunk
changeset: 450087:ec93651cd64f
user: nia <nia%pkgsrc.org@localhost>
date: Sat Apr 10 20:10:48 2021 +0000
description:
pkg_install: add a cast to satisfy GCC, NFCI
diffstat:
pkgtools/pkg_install/files/add/perform.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r a8056fd93b58 -r ec93651cd64f pkgtools/pkg_install/files/add/perform.c
--- a/pkgtools/pkg_install/files/add/perform.c Sat Apr 10 20:03:54 2021 +0000
+++ b/pkgtools/pkg_install/files/add/perform.c Sat Apr 10 20:10:48 2021 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: perform.c,v 1.119 2021/04/10 11:36:56 nia Exp $ */
+/* $NetBSD: perform.c,v 1.120 2021/04/10 20:10:48 nia Exp $ */
#if HAVE_CONFIG_H
#include "config.h"
#endif
@@ -6,7 +6,7 @@
#if HAVE_SYS_CDEFS_H
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: perform.c,v 1.119 2021/04/10 11:36:56 nia Exp $");
+__RCSID("$NetBSD: perform.c,v 1.120 2021/04/10 20:10:48 nia Exp $");
/*-
* Copyright (c) 2003 Grant Beattie <grant%NetBSD.org@localhost>
@@ -159,7 +159,7 @@
loc = strchr(host, '.');
if (loc != NULL) {
majorlen = loc - host;
- if (majorlen != (strchr(package, '.') - package))
+ if (majorlen != (size_t)(strchr(package, '.') - package))
return 0;
if (strncmp(host, package, majorlen) == 0)
return 1;
Home |
Main Index |
Thread Index |
Old Index