Skip to content

Commit

Permalink
Drop warning in parse_util.c
Browse files Browse the repository at this point in the history
darcs-hash:20061012120859-ac50b-1af2af938cd99630c2ea7b532e6213c26cc4ea6b.gz
  • Loading branch information
liljencrantz committed Oct 12, 2006
1 parent 8ece4f3 commit 97f7c20
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions parse_util.c
Original file line number Diff line number Diff line change
Expand Up @@ -592,8 +592,8 @@ int parse_util_unload( const wchar_t *cmd,
return !!val;
}

static void parse_util_autounload( wchar_t *path_var_name,
wchar_t *skip,
static void parse_util_autounload( const wchar_t *path_var_name,
const wchar_t *skip,
void (*on_load)(const wchar_t *cmd) )
{
autoload_t *loaded;
Expand Down Expand Up @@ -649,10 +649,10 @@ static void parse_util_autounload( wchar_t *path_var_name,


static int parse_util_load_internal( const wchar_t *cmd,
void (*on_load)(const wchar_t *cmd),
int reload,
autoload_t *loaded,
array_list_t *path_list );
void (*on_load)(const wchar_t *cmd),
int reload,
autoload_t *loaded,
array_list_t *path_list );


int parse_util_load( const wchar_t *cmd,
Expand Down Expand Up @@ -789,10 +789,10 @@ int parse_util_load( const wchar_t *cmd,
*/

static int parse_util_load_internal( const wchar_t *cmd,
void (*on_load)(const wchar_t *cmd),
int reload,
autoload_t *loaded,
array_list_t *path_list )
void (*on_load)(const wchar_t *cmd),
int reload,
autoload_t *loaded,
array_list_t *path_list )
{
static string_buffer_t *path=0;
time_t *tm;
Expand Down

0 comments on commit 97f7c20

Please sign in to comment.