X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Fcolor_name.h;h=867396ca5f7059efd90ab3f04702715bc22dbffb;hp=a9ea6a3e6009774258c83d0e28c4ccc707fec278;hb=HEAD;hpb=e2e9c09c48b19b24979cafb2d4864f538b5ddd1c diff --git a/test/color_name.h b/test/color_name.h index a9ea6a3e..867396ca 100644 --- a/test/color_name.h +++ b/test/color_name.h @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 2011-2012,2016 Free Software Foundation, Inc. * + * Copyright 2018-2020,2021 Thomas E. Dickey * + * Copyright 2011-2012,2016 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 +27,7 @@ * authorization. * ****************************************************************************/ /* - * $Id: color_name.h,v 1.5 2016/09/04 20:11:36 tom Exp $ + * $Id: color_name.h,v 1.9 2021/04/24 23:25:29 tom Exp $ */ #ifndef __COLORNAME_H @@ -36,7 +37,7 @@ #include #endif -static NCURSES_CONST char *the_color_names[] = +static NCURSES_CONST char *const the_color_names[] = { "black", "red", @@ -79,7 +80,7 @@ color_code(const char *color) } return result; } -#endif /* NEED_COLOR_NAME */ +#endif /* NEED_COLOR_CODE */ #ifdef NEED_COLOR_NAME static const char * @@ -89,7 +90,7 @@ color_name(int color) const char *result = 0; if (color >= (int) SIZEOF(the_color_names)) { - _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(result)) "%d", color); + _nc_SPRINTF(temp, _nc_SLIMIT(sizeof(temp)) "%d", color); result = temp; } else if (color < 0) { result = "default";