summaryrefslogtreecommitdiff
path: root/shells
diff options
context:
space:
mode:
Diffstat (limited to 'shells')
-rw-r--r--shells/pdksh/Makefile4
-rw-r--r--shells/pdksh/files/table.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/shells/pdksh/Makefile b/shells/pdksh/Makefile
index d348da6d5f0..f6494366aaf 100644
--- a/shells/pdksh/Makefile
+++ b/shells/pdksh/Makefile
@@ -1,8 +1,8 @@
-# $NetBSD: Makefile,v 1.22 2014/10/09 14:06:56 wiz Exp $
+# $NetBSD: Makefile,v 1.23 2015/09/07 06:43:48 dsainty Exp $
#
DISTNAME= pdksh-5.2.14
-PKGREVISION= 5
+PKGREVISION= 6
CATEGORIES= shells
MASTER_SITES= ftp://ftp.cs.mun.ca/pub/pdksh/ \
http://gd.tuwien.ac.at/utils/shells/pdksh/ \
diff --git a/shells/pdksh/files/table.h b/shells/pdksh/files/table.h
index 637d1c82b22..cfbe9b66356 100644
--- a/shells/pdksh/files/table.h
+++ b/shells/pdksh/files/table.h
@@ -1,4 +1,4 @@
-/* $NetBSD: table.h,v 1.2 2008/05/31 16:47:37 tnn Exp $ */
+/* $NetBSD: table.h,v 1.3 2015/09/07 06:43:48 dsainty Exp $ */
/*
* generic hashed associative table for commands and variables.
@@ -6,7 +6,7 @@
struct table {
Area *areap; /* area to allocate entries */
- short size, nfree; /* hash size (always 2^^n), free entries */
+ int size, nfree; /* hash size (always 2^^n), free entries */
struct tbl **tbls; /* hashed table items */
};