fixed some typos.

This commit is contained in:
frese 2001-08-29 14:54:26 +00:00
parent 780cc2f939
commit f6d39682a3
1 changed files with 9 additions and 9 deletions

View File

@ -51,7 +51,7 @@ s48_value scx_Parse_Color (s48_value Xdpy, s48_value cmap, s48_value spec) {
SCX_EXTRACT_COLORMAP(cmap), SCX_EXTRACT_COLORMAP(cmap),
s48_extract_string(spec), s48_extract_string(spec),
&ret)) &ret))
return scx_create_Color (ret.red, ret.green, ret.blue); return scx_Create_Color (ret.red, ret.green, ret.blue);
return S48_FALSE; return S48_FALSE;
} }
@ -59,5 +59,5 @@ void scx_init_colormap(void) {
S48_EXPORT_FUNCTION(scx_Free_Colormap); S48_EXPORT_FUNCTION(scx_Free_Colormap);
S48_EXPORT_FUNCTION(scx_Alloc_Color); S48_EXPORT_FUNCTION(scx_Alloc_Color);
S48_EXPORT_FUNCTION(scx_Alloc_Named_Color); S48_EXPORT_FUNCTION(scx_Alloc_Named_Color);
S48_EXPORT_FUNKTION(scx_Parse_Color); S48_EXPORT_FUNCTION(scx_Parse_Color);
} }