From 364bdfd2b86bfd76cd71d7a4cef7452a21ce4835 Mon Sep 17 00:00:00 2001 From: Michael Larson Date: Wed, 2 Jun 2010 11:32:20 -0700 Subject: more fixes for compilier warnings. --- src/cli_new.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/cli_new.c b/src/cli_new.c index 5609c32..621b634 100644 --- a/src/cli_new.c +++ b/src/cli_new.c @@ -99,7 +99,7 @@ static int set_reference_environment(const char* var_reference, clind_path_ref *n_cmd_path, int active); static boolean -is_deactivated(const char *path,const char *symbol) ; +is_deactivated(const clind_path_ref *path,const char *symbol) ; /************************************************* GLOBAL FUNCTIONS @@ -1555,7 +1555,7 @@ static int expand_string(char *stringp) memset(&cv,0,sizeof(cv)); - if (is_deactivated(n_cfg_path,scanp) == FALSE) { + if (is_deactivated(&n_cfg_path,scanp) == FALSE) { if(clind_config_engine_apply_command_path(n_cfg_path, n_tmpl_path, @@ -2404,7 +2404,7 @@ system_out(const char *command) boolean -is_deactivated(const char *path,const char *symbol) +is_deactivated(const clind_path_ref *path,const char *symbol) { if (path == NULL) { return FALSE; -- cgit v1.2.3