Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib/libterminfo More adaptation for ports with unsigned char...



details:   https://anonhg.NetBSD.org/src/rev/bbbf2d861686
branches:  trunk
changeset: 751480:bbbf2d861686
user:      he <he%NetBSD.org@localhost>
date:      Fri Feb 05 14:39:07 2010 +0000

description:
More adaptation for ports with unsigned char as char.

diffstat:

 lib/libterminfo/term.h         |  4 ++--
 lib/libterminfo/term_private.h |  4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r 54ba8bb00016 -r bbbf2d861686 lib/libterminfo/term.h
--- a/lib/libterminfo/term.h    Fri Feb 05 12:46:33 2010 +0000
+++ b/lib/libterminfo/term.h    Fri Feb 05 14:39:07 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: term.h,v 1.2 2010/02/04 09:46:26 roy Exp $ */
+/* $NetBSD: term.h,v 1.3 2010/02/05 14:39:07 he Exp $ */
 
 /*
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -1454,7 +1454,7 @@
        /* We need to expose these so that the macros work */
        char *name;
        char *desc;
-       char *flags;
+       signed char *flags;
        short *nums;
        const char **strs;
 } TERMINAL;
diff -r 54ba8bb00016 -r bbbf2d861686 lib/libterminfo/term_private.h
--- a/lib/libterminfo/term_private.h    Fri Feb 05 12:46:33 2010 +0000
+++ b/lib/libterminfo/term_private.h    Fri Feb 05 14:39:07 2010 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: term_private.h,v 1.3 2010/02/05 12:31:56 roy Exp $ */
+/* $NetBSD: term_private.h,v 1.4 2010/02/05 14:39:07 he Exp $ */
 
 /*
  * Copyright (c) 2009 The NetBSD Foundation, Inc.
@@ -84,7 +84,7 @@
        /* We need to expose these so that the macros work */
        char *name;
        char *desc;
-       char *flags;
+       signed char *flags;
        short *nums;
        const char **strs;
        /* Storage area for terminfo data */



Home | Main Index | Thread Index | Old Index