summaryrefslogtreecommitdiff
path: root/src/VarGet.c
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2019-03-19 20:04:40 -0400
committerThomas E. Dickey <dickey@invisible-island.net>2019-04-15 19:43:34 -0400
commitc131d277ef061716b97e27cccc094bf1c0ae222f (patch)
tree568a0146a115d187865fc6ad65ec9dfca5ce4de3 /src/VarGet.c
parentc66f453b4089b7af7ee14be7c5f817e8dd98be1e (diff)
downloadxorg-lib-libXt-c131d277ef061716b97e27cccc094bf1c0ae222f.tar.gz
eliminate casts of NULL for String* and Cardinal*, since those are unnecessary
as well as interfere with proposed const-string changes. Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'src/VarGet.c')
-rw-r--r--src/VarGet.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VarGet.c b/src/VarGet.c
index ccd4d10..ce66e6f 100644
--- a/src/VarGet.c
+++ b/src/VarGet.c
@@ -149,7 +149,7 @@ GetTypedArg(
XtAppWarningMsg(XtWidgetToApplicationContext(widget),
"unknownType", XtNxtGetTypedArg, XtCXtToolkitError,
"Unable to find type of resource for conversion",
- (String *)NULL, (Cardinal *)NULL);
+ NULL, NULL);
return;
}