summaryrefslogtreecommitdiff
path: root/src/ivy.c
diff options
context:
space:
mode:
authorfcolin2006-04-21 15:51:55 +0000
committerfcolin2006-04-21 15:51:55 +0000
commit2cf893c0c34d50a68a27e1704b38f2facc10c9bc (patch)
tree600b8833d8498803c350e47d8a0ce26185604e2d /src/ivy.c
parent8b42932b4ec978040acf341e69cd7b037721b24f (diff)
downloadivy-c-2cf893c0c34d50a68a27e1704b38f2facc10c9bc.zip
ivy-c-2cf893c0c34d50a68a27e1704b38f2facc10c9bc.tar.gz
ivy-c-2cf893c0c34d50a68a27e1704b38f2facc10c9bc.tar.bz2
ivy-c-2cf893c0c34d50a68a27e1704b38f2facc10c9bc.tar.xz
suppression de l'indirection sur les fonction channel et renomage !
Diffstat (limited to 'src/ivy.c')
-rw-r--r--src/ivy.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ivy.c b/src/ivy.c
index 5e887d5..b78d227 100644
--- a/src/ivy.c
+++ b/src/ivy.c
@@ -301,7 +301,7 @@ static void Receive( Client client, void *data, char *line )
return;
}
- bind = IvyBindingCompile( arg );
+ bind = IvyBindingCompile( arg, & erroffset, & errbuf );
if ( bind != NULL )
{
IVY_LIST_ADD_START( clnt->msg_send, snd )
@@ -317,7 +317,6 @@ static void Receive( Client client, void *data, char *line )
}
else
{
- IvyBindingGetCompileError( & erroffset, & errbuf );
printf("Error compiling '%s', %s\n", arg, errbuf);
MsgSendTo( client, Error, erroffset, errbuf );
}