Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/usr.bin/infocmp Make our unsigned char ports happy.
details: https://anonhg.NetBSD.org/src/rev/d92c6f80e743
branches: trunk
changeset: 751473:d92c6f80e743
user: roy <roy%NetBSD.org@localhost>
date: Fri Feb 05 10:10:04 2010 +0000
description:
Make our unsigned char ports happy.
diffstat:
usr.bin/infocmp/infocmp.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 776434dc4515 -r d92c6f80e743 usr.bin/infocmp/infocmp.c
--- a/usr.bin/infocmp/infocmp.c Fri Feb 05 10:01:16 2010 +0000
+++ b/usr.bin/infocmp/infocmp.c Fri Feb 05 10:10:04 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: infocmp.c,v 1.1 2010/02/03 15:16:33 roy Exp $ */
+/* $NetBSD: infocmp.c,v 1.2 2010/02/05 10:10:04 roy Exp $ */
/*
* Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -28,7 +28,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: infocmp.c,v 1.1 2010/02/03 15:16:33 roy Exp $");
+__RCSID("$NetBSD: infocmp.c,v 1.2 2010/02/05 10:10:04 roy Exp $");
#include <sys/ioctl.h>
@@ -46,7 +46,7 @@
typedef struct tient {
char type;
const char *id;
- char flag;
+ signed char flag;
short num;
const char *str;
} TIENT;
Home |
Main Index |
Thread Index |
Old Index