Skip to content

Commit

Permalink
Merge pull request #69 from olebole/cast
Browse files Browse the repository at this point in the history
Add missing pointer cast to fix ftbfs in ximtool.c
  • Loading branch information
olebole committed Aug 26, 2024
2 parents bbd2f4d + 38906b7 commit 3cc0020
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ximtool/ximtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ main (int argc, char **argv)
*/
if ((ism = ismNameToPtr ("wcspix"))) {
system (ism->command);
ism_message (ism, "wcspix", "initialize");
ism_message ((XimDataPtr)ism, "wcspix", "initialize");
}

XSetErrorHandler(xerror);
Expand Down

0 comments on commit 3cc0020

Please sign in to comment.