summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stream/stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/stream.c b/stream/stream.c
index 8a3d981809..61519bf012 100644
--- a/stream/stream.c
+++ b/stream/stream.c
@@ -312,7 +312,7 @@ static int open_internal(const stream_info_t *sinfo, struct stream *underlying,
}
}
- int r = sinfo->open(s);
+ int r = (sinfo->open)(s);
if (r != STREAM_OK) {
talloc_free(s);
return r;