From 64662ff2ce0cbadeb8a596eee63667bc0e5130e4 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 6 Dec 2012 20:41:09 +0100 Subject: Fix two enumeration types in function signatures Spotted with clang and "-Wconversion". Signed-off-by: Lukas Fleischer --- src/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/io.c') diff --git a/src/io.c b/src/io.c index 884e3a9..bef4c55 100644 --- a/src/io.c +++ b/src/io.c @@ -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; -- cgit v1.2.3-54-g00ecf