Make a few warnings go away.
This commit is contained in:
parent
c90c8b50e4
commit
9a1e25d994
@ -31,12 +31,12 @@ char *defconfig_file;
|
||||
static int indent = 1;
|
||||
static int valid_stdin = 1;
|
||||
static int conf_cnt;
|
||||
static signed char line[128];
|
||||
static char line[128];
|
||||
static struct menu *rootEntry;
|
||||
|
||||
static char nohelp_text[] = "Sorry, no help available for this option yet.\n";
|
||||
|
||||
static void strip(signed char *str)
|
||||
static void strip(char *str)
|
||||
{
|
||||
signed char *p = str;
|
||||
int l;
|
||||
|
@ -23,10 +23,10 @@ const char *conf_confnames[] = {
|
||||
NULL,
|
||||
};
|
||||
|
||||
static char *conf_expand_value(const signed char *in)
|
||||
static char *conf_expand_value(const char *in)
|
||||
{
|
||||
struct symbol *sym;
|
||||
const signed char *src;
|
||||
const char *src;
|
||||
static char res_value[SYMBOL_MAXLENGTH];
|
||||
char *dst, name[SYMBOL_MAXLENGTH];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user