forked from auracaster/openocd
fileio: -Wshadow warning fix
Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com>
This commit is contained in:
@@ -98,12 +98,12 @@ static inline int fileio_open_local(struct fileio *fileio)
|
||||
return ERROR_OK;
|
||||
}
|
||||
|
||||
int fileio_open(struct fileio *fileio, const char *url, enum fileio_access access, enum fileio_type type)
|
||||
int fileio_open(struct fileio *fileio, const char *url, enum fileio_access access_type, enum fileio_type type)
|
||||
{
|
||||
int retval = ERROR_OK;
|
||||
|
||||
fileio->type = type;
|
||||
fileio->access = access;
|
||||
fileio->access = access_type;
|
||||
fileio->url = strdup(url);
|
||||
|
||||
retval = fileio_open_local(fileio);
|
||||
|
||||
Reference in New Issue
Block a user