summaryrefslogtreecommitdiff
path: root/src/Core.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2019-07-07 13:26:07 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2019-07-07 13:48:55 -0400
commit0b08f9c45edf8b708b096b89c614094a92a6b7a6 (patch)
treeedf44c983469794d36476b7ebf507f2db08043cc /src/Core.c
parente4dfb3e179e54177244ab668d6d84486fbd26944 (diff)
downloadxorg-lib-libXt-0b08f9c45edf8b708b096b89c614094a92a6b7a6.tar.gz
remove/amend a few casts which produced warnings
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/Core.c')
-rw-r--r--src/Core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Core.c b/src/Core.c
index 7996890..8ad7842 100644
--- a/src/Core.c
+++ b/src/Core.c
@@ -246,7 +246,7 @@ static void CoreClassPartInitialize(
super->core_class.display_accelerator;
}
- if (wc->core_class.tm_table == (char *) XtInheritTranslations) {
+ if (wc->core_class.tm_table == XtInheritTranslations) {
wc->core_class.tm_table =
wc->core_class.superclass->core_class.tm_table;
} else if (wc->core_class.tm_table != NULL) {