Fix some issues in gcc warnings

This commit is contained in:
Ola Bini 2015-10-05 11:58:48 -05:00
parent 5edd431d92
commit 1a3fcda0a3
No known key found for this signature in database
GPG Key ID: 465757AF3914B4B7

View File

@ -277,7 +277,7 @@ test_have_enough_mem_for_dircache(void *arg)
return;
}
static char *fixed_get_uname_result = NULL;
static const char *fixed_get_uname_result = NULL;
static const char *
fixed_get_uname(void)
@ -316,7 +316,7 @@ typedef struct {
} options_test_data_t;
static options_test_data_t *
get_options_test_data(char *conf)
get_options_test_data(const char *conf)
{
config_line_t *cl=NULL;
options_test_data_t *result = tor_malloc(sizeof(options_test_data_t));