1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

[color] unsigned char * -> char *

This commit is contained in:
Witold Filipczyk 2021-07-04 12:50:01 +02:00
parent 1e91339a3a
commit 9a6a09450b
2 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ get_color(struct html_context *html_context, char *a,
}
int
get_color2(struct html_context *html_context, unsigned char *value_value, color_T *rgb)
get_color2(struct html_context *html_context, char *value_value, color_T *rgb)
{
if (!use_document_fg_colors(html_context->options))
return -1;

View File

@ -212,7 +212,7 @@ void ln_break(struct html_context *html_context, int n);
int get_color(struct html_context *html_context, char *a, char *c, color_T *rgb);
int get_color2(struct html_context *html_context, unsigned char *value_value, color_T *rgb);
int get_color2(struct html_context *html_context, char *value_value, color_T *rgb);
#ifdef __cplusplus
}