diff options
author | Björn Linse <bjorn.linse@gmail.com> | 2020-02-23 16:03:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-23 16:03:24 +0100 |
commit | c036e24f39481f2b7872659c076b53435192003d (patch) | |
tree | 423c777bce97daa7f490950aaf48fb1a0efca979 /src/nvim/channel.c | |
parent | 7591fafd764e9dbcdfe3b28f03fe3c84de893c9e (diff) | |
parent | 0504f2f88dac9a4cf1fe1052a1e00ab203e9cf8e (diff) | |
download | rneovim-c036e24f39481f2b7872659c076b53435192003d.tar.gz rneovim-c036e24f39481f2b7872659c076b53435192003d.tar.bz2 rneovim-c036e24f39481f2b7872659c076b53435192003d.zip |
Merge pull request #11890 from cryptomilk/master-gcc10-fno-common
Fix issues revealed by gcc10 setting -fno-common by default
Diffstat (limited to 'src/nvim/channel.c')
-rw-r--r-- | src/nvim/channel.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/channel.c b/src/nvim/channel.c index c66a0682e3..5eb29a7290 100644 --- a/src/nvim/channel.c +++ b/src/nvim/channel.c @@ -19,7 +19,6 @@ #include "nvim/ascii.h" static bool did_stdio = false; -PMap(uint64_t) *channels = NULL; /// next free id for a job or rpc channel /// 1 is reserved for stdio channel |