aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2021-10-30 02:23:20 +0200
committerGitHub <noreply@github.com>2021-10-29 17:23:20 -0700
commit4472c56d54f447040f6e8610b261b7efa0d04eb6 (patch)
treefcc56104bc56529999bd18e90ecef1c80711ecf0 /src/nvim/os
parent16d06fa3eb74ed96b659736ea504c31ed81c325e (diff)
downloadrneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.tar.gz
rneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.tar.bz2
rneovim-4472c56d54f447040f6e8610b261b7efa0d04eb6.zip
refactor: uncrustify #16090
Diffstat (limited to 'src/nvim/os')
-rw-r--r--src/nvim/os/fileio.h2
-rw-r--r--src/nvim/os/input.c2
-rw-r--r--src/nvim/os/pty_process_win.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/os/fileio.h b/src/nvim/os/fileio.h
index 7c53cd4f07..426dc422c2 100644
--- a/src/nvim/os/fileio.h
+++ b/src/nvim/os/fileio.h
@@ -68,7 +68,7 @@ enum {
/// Read or write buffer size
///
/// Currently equal to (IOSIZE - 1), but they do not need to be connected.
- kRWBufferSize = 1024
+ kRWBufferSize = 1024,
};
#ifdef INCLUDE_GENERATED_DECLARATIONS
diff --git a/src/nvim/os/input.c b/src/nvim/os/input.c
index 4c6e9ee4d3..5a096393d3 100644
--- a/src/nvim/os/input.c
+++ b/src/nvim/os/input.c
@@ -30,7 +30,7 @@
typedef enum {
kInputNone,
kInputAvail,
- kInputEof
+ kInputEof,
} InbufPollResult;
static Stream read_stream = { .closed = true }; // Input before UI starts.
diff --git a/src/nvim/os/pty_process_win.h b/src/nvim/os/pty_process_win.h
index 3f6cc58e3e..d1737fd63a 100644
--- a/src/nvim/os/pty_process_win.h
+++ b/src/nvim/os/pty_process_win.h
@@ -10,7 +10,7 @@
typedef enum {
kWinpty,
- kConpty
+ kConpty,
} PtyType;
typedef struct pty_process {