mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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
This commit is contained in:
parent
dc9652e68d
commit
217b6bc123
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user