mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
8fb1a5c117
Requested by: rgrimes Submitted by: Ade Lovett <ade@lovett.com>
15 lines
424 B
Plaintext
15 lines
424 B
Plaintext
--- 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;
|
|
}
|
|
|