summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2019-11-25 19:15:33 -0500
committerThomas E. Dickey <dickey@invisible-island.net>2019-11-25 20:50:59 -0500
commit4ea048a88a378d05bfef1633bcafae17a757e024 (patch)
tree94cf7da75ec9d68557ad4d1e47d5db46a707aae2
parent78f66e92c66ad637da33df454a7aae149476e765 (diff)
downloadxorg-lib-libXaw-4ea048a88a378d05bfef1633bcafae17a757e024.tar.gz
fix compiler warning by updating parameter type for call to XtDisplayInitialize
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
-rw-r--r--include/X11/Xaw/XawInit.h2
-rw-r--r--src/XawInit.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/X11/Xaw/XawInit.h b/include/X11/Xaw/XawInit.h
index 73226b2..7e77f81 100644
--- a/include/X11/Xaw/XawInit.h
+++ b/include/X11/Xaw/XawInit.h
@@ -54,7 +54,7 @@ extern Widget XawOpenApplication(
String application_class,
WidgetClass widget_class,
int *argc,
- String *argv
+ _XtString *argv
);
_XFUNCPROTOEND
diff --git a/src/XawInit.c b/src/XawInit.c
index 5ca1ef8..702ea5c 100644
--- a/src/XawInit.c
+++ b/src/XawInit.c
@@ -66,7 +66,7 @@ Widget XawOpenApplication(XtAppContext *app_context_return,
String application_class,
WidgetClass widget_class,
int *argc,
- String *argv)
+ _XtString *argv)
{
Widget toplevel;
Cardinal n;