summaryrefslogtreecommitdiffstats
path: root/src/channel.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-01-17 22:28:22 +0100
committerBram Moolenaar <Bram@vim.org>2019-01-17 22:28:22 +0100
commit1ac56c2d11da5ffa44db23e1fd0c533d02ab2f66 (patch)
tree6eba7bed7de78a1efe65c23aeec28b1f93b3a2e5 /src/channel.c
parent3020ccb113d397ddf474001dc00a1916ad7abdee (diff)
patch 8.1.0770: inconsistent use of ELAPSED_FUNCv8.1.0770
Problem: Inconsistent use of ELAPSED_FUNC. Solution: Consistently use ELAPSED_FUNC. Also turn ELAPSED_TYPE into a typedef. (Ozaki Kiichi, closes #3815)
Diffstat (limited to 'src/channel.c')
-rw-r--r--src/channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/channel.c b/src/channel.c
index e08081dd71..8f0577f9b6 100644
--- a/src/channel.c
+++ b/src/channel.c
@@ -4290,7 +4290,7 @@ channel_parse_messages(void)
int r;
ch_part_T part = PART_SOCK;
#ifdef ELAPSED_FUNC
- ELAPSED_TYPE start_tv;
+ elapsed_T start_tv;
ELAPSED_INIT(start_tv);
#endif