You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
546 B
16 lines
546 B
src/encoding/encoding.c | 2 +- |
|
1 files changed, 1 insertions(+), 1 deletions(-) |
|
|
|
diff --git a/src/encoding/encoding.c b/src/encoding/encoding.c |
|
index d019dab..9648da3 100644 |
|
--- a/src/encoding/encoding.c |
|
+++ b/src/encoding/encoding.c |
|
@@ -124,7 +124,7 @@ open_encoded(int fd, enum stream_encoding encoding) |
|
if (!stream) return NULL; |
|
|
|
stream->encoding = encoding; |
|
- if (decoding_backends[stream->encoding]->open(stream, fd) >= 0) |
|
+ if ((decoding_backends[stream->encoding]->open)(stream, fd) >= 0) |
|
return stream; |
|
|
|
mem_free(stream);
|
|
|