summaryrefslogtreecommitdiff
path: root/bin/ksh/table.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-09-14 16:08:51 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-09-14 16:08:51 +0000
commitddd8533a3041026de9cbd67293774693d57c91c3 (patch)
tree153e9c036f838c9a49903283fc1b36223ecea260 /bin/ksh/table.h
parent57c9708f8144a198ddf49831f4752bb449c4eae1 (diff)
Replace Tflag typedef with just int; ok tedu
Diffstat (limited to 'bin/ksh/table.h')
-rw-r--r--bin/ksh/table.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/table.h b/bin/ksh/table.h
index 3fe35eb0f52..0431c777be2 100644
--- a/bin/ksh/table.h
+++ b/bin/ksh/table.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: table.h,v 1.8 2012/02/19 07:52:30 otto Exp $ */
+/* $OpenBSD: table.h,v 1.9 2015/09/14 16:08:50 nicm Exp $ */
/* $From: table.h,v 1.3 1994/05/31 13:34:34 michael Exp $ */
@@ -13,7 +13,7 @@ struct table {
};
struct tbl { /* table item */
- Tflag flag; /* flags */
+ int flag; /* flags */
int type; /* command type (see below), base (if INTEGER),
* or offset from val.s of value (if EXPORT) */
Area *areap; /* area to allocate from */