diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-07 13:00:34 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2019-07-07 13:48:44 -0400 |
commit | 6038bd4fd95050f77c18c7cbf9ec2ca9152590af (patch) | |
tree | e410553db8cfb1ef879eae8b2c90cee46dc1b1b3 /include | |
parent | 61df064c511bb93b49a67a2d2b3c4886d650eeda (diff) |
constify table passed to _XtTableAddConverter to reduce strict compiler warnings
Signed-off-by: Thomas E. Dickey <dickey@invisible-island.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/X11/ConvertI.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/X11/ConvertI.h b/include/X11/ConvertI.h index e7a9636..8fdfe18 100644 --- a/include/X11/ConvertI.h +++ b/include/X11/ConvertI.h @@ -74,7 +74,7 @@ extern void _XtTableAddConverter( XrmRepresentation /* from_type */, XrmRepresentation /* to_type */, XtTypeConverter /* converter */, - XtConvertArgList /* convert_args */, + XtConvertArgRec const * /* convert_args */, Cardinal /* num_args */, _XtBoolean /* new_style */, XtCacheType /* cache_type */, |