From 71cc1cfb9633f4f21cbd7bed2a5e298466155cf4 Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Mon, 15 Oct 2007 02:16:36 +0000 Subject: specifying int instead of just unsigned is better style --- usr.bin/tset/tset.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/tset/tset.c') 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]; -- cgit v1.2.3