From 5117fa70afc0431e57231e216474a1f530094fd0 Mon Sep 17 00:00:00 2001 From: sfan5 Date: Mon, 5 Apr 2021 23:00:12 +0200 Subject: stream: turn stream_info.open2's args argument const So nobody comes up with the "smart" idea to modify those again. --- stream/stream_slice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stream/stream_slice.c') diff --git a/stream/stream_slice.c b/stream/stream_slice.c index 8bf80943eb..c0dbeeb2af 100644 --- a/stream/stream_slice.c +++ b/stream/stream_slice.c @@ -136,7 +136,7 @@ static int parse_slice_range(stream_t *stream) return STREAM_OK; } -static int open2(struct stream *stream, struct stream_open_args *args) +static int open2(struct stream *stream, const struct stream_open_args *args) { struct priv *p = talloc_zero(stream, struct priv); stream->priv = p; -- cgit v1.2.3