aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwidget.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gwin/gwidget.c')
-rw-r--r--src/gwin/gwidget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwidget.c b/src/gwin/gwidget.c
index db9dc9fa..484b8c37 100644
--- a/src/gwin/gwidget.c
+++ b/src/gwin/gwidget.c
@@ -338,7 +338,7 @@ void gwinSetText(GHandle gh, const char *text, bool_t useAlloc) {
else if (useAlloc) {
char *str;
- if ((str = (char *)gfxAlloc(strlen(text)+1))) {
+ if ((str = gfxAlloc(strlen(text)+1))) {
gh->flags |= GWIN_FLG_ALLOCTXT;
strcpy(str, text);
}