diff options
author | kaleb <empty> | 1995-06-22 17:19:25 +0000 |
---|---|---|
committer | kaleb <empty> | 1995-06-22 17:19:25 +0000 |
commit | 0dd8141f56ffda82c5dc68d0eb795b10b16659be (patch) | |
tree | 71230bffdb344042394e8ef1389093b16f300f5f /xc | |
parent | 86ec9fddd5793921650a2e0257b074f13e7b35f1 (diff) |
XBUG 7479. Eliminate warning for bad cast
Diffstat (limited to 'xc')
-rw-r--r-- | xc/lib/Xt/TMstate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xc/lib/Xt/TMstate.c b/xc/lib/Xt/TMstate.c index 34ad79676..562ebf517 100644 --- a/xc/lib/Xt/TMstate.c +++ b/xc/lib/Xt/TMstate.c @@ -1,4 +1,4 @@ -/* $XConsortium: TMstate.c,v 1.174 94/09/15 19:42:47 kaleb Exp kaleb $ */ +/* $XConsortium: TMstate.c,v 1.175 94/09/16 19:17:43 kaleb Exp kaleb $ */ /*********************************************************** Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts, @@ -2040,7 +2040,7 @@ static Boolean ComposeTranslations(dest, operation, source, newXlations) XSelectInput(XtDisplay(dest), XtWindow(dest), XtBuildEventMask(dest)); } - XtStackFree((char *)newBindings, (char *)stackBindings); + XtStackFree((XtPointer)newBindings, (XtPointer)stackBindings); return(newTable != NULL); } |