From 217b6bc12388a42c0b319a9c6d81d0da666bd975 Mon Sep 17 00:00:00 2001 From: oni-link Date: Tue, 8 Sep 2015 14:20:43 +0200 Subject: Fix warning: stream.c: stream_init(): Dead store: HI. Problem : Dead store @ 59. Diagnostic : Harmless issue. Rationale : loop is a function parameter that is not used anymore after this line. Resolution : Remove line. Based on: http://neovim.io/doc/reports/clang/report-27475f.html#EndPath --- src/nvim/event/stream.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/nvim/event/stream.c b/src/nvim/event/stream.c index 6caad6fdcc..376eb9fce7 100644 --- a/src/nvim/event/stream.c +++ b/src/nvim/event/stream.c @@ -56,7 +56,6 @@ void stream_init(Loop *loop, Stream *stream, int fd, uv_stream_t *uvstream, if (stream->uvstream) { stream->uvstream->data = stream; - loop = stream->uvstream->loop->data; } stream->data = data; -- cgit