freebsd-ports/graphics/ayam/files/patch-plugins_mfio.c
Martin Wilke 229ea01b19 - Update to 1.13 (fix pointyhat build)
- Pass maintainership to submitter

PR:		118786
Submitted by:	Pietro Cerutti <gahr@gahr.ch>
2007-12-18 00:19:10 +00:00

19 lines
724 B
C

--- plugins/mfio.c.orig 2007-12-17 19:15:06.000000000 +0100
+++ plugins/mfio.c 2007-12-17 19:17:03.000000000 +0100
@@ -3530,12 +3530,12 @@
/* register some C-functions as Tcl-Commands */
Tcl_CreateCommand (interp, "ay_mfio_import",
- ay_mfio_importscenetcmd,
- (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL);
+ (Tcl_CmdProc *)ay_mfio_importscenetcmd,
+ NULL, NULL);
Tcl_CreateCommand (interp, "ay_mfio_export",
- ay_mfio_exportscenetcmd,
- (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL);
+ (Tcl_CmdProc *)ay_mfio_exportscenetcmd,
+ NULL, NULL);
/* source mfio.tcl, it contains Tcl-code for menu entries */
if((Tcl_EvalFile(interp, "mfio.tcl")) != TCL_OK)