summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2007-10-15 02:16:36 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2007-10-15 02:16:36 +0000
commit71cc1cfb9633f4f21cbd7bed2a5e298466155cf4 (patch)
treef5c77da016f1ca4dc8af3a594d3905f3a4878138 /usr.bin
parente1f9f519d90e79938fea03cd7854c9ca9c49cce1 (diff)
specifying int instead of just unsigned is better style
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/tset/tset.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tset/tset.c b/usr.bin/tset/tset.c
index b7163c571fa..4b7e207a5ca 100644
--- a/usr.bin/tset/tset.c
+++ b/usr.bin/tset/tset.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tset.c,v 1.31 2007/09/14 14:29:20 chl Exp $ */
+/* $OpenBSD: tset.c,v 1.32 2007/10/15 02:16:35 deraadt Exp $ */
/****************************************************************************
* Copyright (c) 1998,1999,2000 Free Software Foundation, Inc. *
@@ -961,9 +961,9 @@ set_tabs(void)
*/
#ifdef TERMIOS
static void
-report(const char *name, int which, unsigned def)
+report(const char *name, int which, unsigned int def)
{
- unsigned older, newer;
+ unsigned int older, newer;
char *p;
newer = mode.c_cc[which];