fix type mismatches
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@972 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
#ifndef _args_h_
|
#ifndef _args_h_
|
||||||
#define _args_h_
|
#define _args_h_
|
||||||
|
|
||||||
extern int af_exit_after_script;
|
extern bool af_exit_after_script;
|
||||||
extern char *af_script_file_name;
|
extern char *af_script_file_name;
|
||||||
|
|
||||||
void init_arguments(int argc,char **argv);
|
void init_arguments(int argc,char **argv);
|
||||||
|
|||||||
@@ -304,7 +304,7 @@ bool scan_info_home(scan_info *info)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
bool init_scan_info_by_file(const char *file_name,scan_info *info)
|
int init_scan_info_by_file(const char *file_name,scan_info *info)
|
||||||
{
|
{
|
||||||
int err = SHE_NO_ERROR;
|
int err = SHE_NO_ERROR;
|
||||||
|
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
#include "shell_defs.h"
|
#include "shell_defs.h"
|
||||||
#include "file_utils.h"
|
#include "file_utils.h"
|
||||||
|
|
||||||
static bool parse_value(scan_info *info,shell_value **out);
|
static int parse_value(scan_info *info,shell_value **out);
|
||||||
static int handle_exec(scan_info *info,shell_value **out);
|
static int handle_exec(scan_info *info,shell_value **out);
|
||||||
static int parse_rvl_expr(scan_info *info,shell_value **out);
|
static int parse_rvl_expr(scan_info *info,shell_value **out);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user