diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-09 21:00:36 -0800 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-11-09 21:00:36 -0800 |
commit | 1c41f3b9b86b5eeedfa3bff92e519d45aa097587 (patch) | |
tree | 47f9a6097c3f3503518bb64e40763027e69e9c27 | |
parent | f6dad6aaa384bf836baa28ccb72b476a85c40eff (diff) |
XlcSL.c: convert old-style function definitions to ANSI C89 style
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | src/xlibi18n/XlcSL.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/xlibi18n/XlcSL.c b/src/xlibi18n/XlcSL.c index 574e4c0..b8b3967 100644 --- a/src/xlibi18n/XlcSL.c +++ b/src/xlibi18n/XlcSL.c @@ -71,8 +71,7 @@ extern XIM _XDefaultOpenIM( ); Bool -_XInitDefaultIM(lcd) -XLCd lcd; +_XInitDefaultIM(XLCd lcd) { if(lcd == (XLCd)NULL) return False; @@ -88,8 +87,7 @@ extern XOM _XDefaultOpenOM( ); Bool -_XInitDefaultOM(lcd) - XLCd lcd; +_XInitDefaultOM(XLCd lcd) { lcd->methods->open_om = _XDefaultOpenOM; return True; |