aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/event/time.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-09-14 18:13:34 +0200
committerGitHub <noreply@github.com>2021-09-14 09:13:34 -0700
commit0a83017fe95df0290adb98ec6bf457b96a3fab17 (patch)
tree41362f11095eff22795474e035c5d91d3fb4a7d8 /src/nvim/event/time.c
parent516775e9d84c5eda9c1d014ff052132737361d90 (diff)
downloadrneovim-0a83017fe95df0290adb98ec6bf457b96a3fab17.tar.gz
rneovim-0a83017fe95df0290adb98ec6bf457b96a3fab17.tar.bz2
rneovim-0a83017fe95df0290adb98ec6bf457b96a3fab17.zip
refactor: format files with uncrustify #15663
Diffstat (limited to 'src/nvim/event/time.c')
-rw-r--r--src/nvim/event/time.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/nvim/event/time.c b/src/nvim/event/time.c
index b7e30e392b..aa7b9cf2a1 100644
--- a/src/nvim/event/time.c
+++ b/src/nvim/event/time.c
@@ -2,7 +2,6 @@
// it. PVS-Studio Static Code Analyzer for C, C++ and C#: http://www.viva64.com
#include <stdint.h>
-
#include <uv.h>
#include "nvim/event/loop.h"
@@ -23,8 +22,7 @@ void time_watcher_init(Loop *loop, TimeWatcher *watcher, void *data)
watcher->blockable = false;
}
-void time_watcher_start(TimeWatcher *watcher, time_cb cb, uint64_t timeout,
- uint64_t repeat)
+void time_watcher_start(TimeWatcher *watcher, time_cb cb, uint64_t timeout, uint64_t repeat)
FUNC_ATTR_NONNULL_ALL
{
watcher->cb = cb;