1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-15 23:50:44 +00:00
freebsd-ports/net/ratoolset/files/patch-aj

15 lines
424 B
Plaintext
Raw Normal View History

--- src/aoe/TclApp.cc.orig Thu Apr 23 21:52:07 1998
+++ src/aoe/TclApp.cc Mon Nov 29 09:12:33 1999
@@ -191,9 +191,9 @@
// Call Tcl function to create a Tcl command
if (Tcl_CreateCommand(ptInterp,
pcCommand->getName(),
- TclCommand::command,
+ &TclCommand::command,
(ClientData)pcCommand,
- TclCommand::cleanUp) == NULL) return 0;
+ &TclCommand::cleanUp) == NULL) return 0;
return 1;
}