]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/color_name.h
ncurses 6.0 - patch 20151205
[ncurses.git] / test / color_name.h
index 0964dce15990d7beeb093f1ea4ceea4679b5b989..81a3b3125759bfd426c7e0396b1bfed3a272b3c1 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2011 Free Software Foundation, Inc.                        *
+ * Copyright (c) 2011,2012 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            *
@@ -26,7 +26,7 @@
  * authorization.                                                           *
  ****************************************************************************/
 /*
- * $Id: color_name.h,v 1.3 2011/05/14 17:41:17 tom Exp $
+ * $Id: color_name.h,v 1.4 2012/11/18 01:59:32 tom Exp $
  */
 
 #ifndef __COLORNAME_H
@@ -88,7 +88,7 @@ color_name(int color)
     static char temp[20];
     const char *result = 0;
 
-    if (color > (int) SIZEOF(the_color_names)) {
+    if (color >= (int) SIZEOF(the_color_names)) {
        sprintf(temp, "%d", color);
        result = temp;
     } else if (color < 0) {