From 09f82d4e1e6dd1672b272c314c42d5cf30c91ea8 Mon Sep 17 00:00:00 2001 From: bustico Date: Mon, 19 May 2008 15:31:30 +0000 Subject: * make the lib and api more robust by adding const where they should be * compile with -Wall and eliminate remaining warnings --- tools/ivyprobe.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools/ivyprobe.c') diff --git a/tools/ivyprobe.c b/tools/ivyprobe.c index ed16455..a70d1bb 100644 --- a/tools/ivyprobe.c +++ b/tools/ivyprobe.c @@ -147,14 +147,14 @@ void HandleStdin (Channel channel, HANDLE fd, void *data) arg = strtok (NULL, "'"); Chop(arg); if (arg) { - IvyBinding bind; + IvyBinding binding; const char *errbuf; int erroffset; - bind = IvyBindingCompile(arg, & erroffset, & errbuf); - if (bind==NULL) { + binding = IvyBindingCompile(arg, & erroffset, & errbuf); + if (binding==NULL) { printf("Error compiling '%s', %s, not bound\n", arg, errbuf); } else { - IvyBindingFree( bind ); + IvyBindingFree( binding ); IvyBindMsg (Callback, NULL, arg); } } @@ -249,7 +249,7 @@ void ApplicationCallback (IvyClientPtr app, void *user_data, IvyApplicationEvent break; } } -void IvyPrintBindCallback( IvyClientPtr app, void *user_data, int id, char* regexp, IvyBindEvent event) +void IvyPrintBindCallback( IvyClientPtr app, void *user_data, int id, const char* regexp, IvyBindEvent event) { switch ( event ) { case IvyAddBind: -- cgit v1.1