]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - progs/tabs.c
ncurses 5.7 - patch 20091010
[ncurses.git] / progs / tabs.c
index f3cc42fb7b009d9319668950ebd4ac27ac1132f5..aafaa2d8f37cf702a224a1ca8ad44e7889b7783e 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2008 Free Software Foundation, Inc.                        *
+ * Copyright (c) 2008,2009 Free Software Foundation, Inc.                   *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -37,7 +37,7 @@
 #define USE_LIBTINFO
 #include <progs.priv.h>
 
-MODULE_ID("$Id: tabs.c,v 1.15 2008/11/23 00:47:51 tom Exp $")
+MODULE_ID("$Id: tabs.c,v 1.16 2009/10/10 16:15:37 tom Exp $")
 
 static void usage(void) GCC_NORETURN;
 
@@ -210,8 +210,8 @@ trimmed_tab_list(const char *source)
                ;
            } else {
                if (last == ',')
-                   result[k++] = last;
-               result[k++] = ch;
+                   result[k++] = (char) last;
+               result[k++] = (char) ch;
            }
            last = ch;
        }