Fix two enumeration types in function signatures

Spotted with clang and "-Wconversion".

Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
This commit is contained in:
Lukas Fleischer
2012-12-06 20:41:09 +01:00
parent db51503b64
commit 64662ff2ce
2 changed files with 2 additions and 2 deletions

View File

@@ -932,7 +932,7 @@ void io_export_data(enum export_type type)
}
}
static FILE *get_import_stream(enum export_type type)
static FILE *get_import_stream(enum import_type type)
{
FILE *stream = NULL;
char *stream_name;