mirror of
https://github.com/neovim/neovim.git
synced 2026-01-06 21:37:43 +00:00
test: format C test files and fix clang-tidy warnings
It's probably not worth adding the C test files to regular formatting as they're pretty much never touched, but ensuring the files are formatted according to our standards and getting rid of warnings is a cheap one-time fix.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
/// Helper program to exit and keep stdout open (like "xclip -i -loops 1").
|
||||
#include <stdio.h>
|
||||
|
||||
#include <uv.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
@@ -8,7 +7,7 @@ int main(int argc, char **argv)
|
||||
uv_loop_t *loop = uv_default_loop();
|
||||
uv_process_t child_req;
|
||||
|
||||
char * args[3];
|
||||
char *args[3];
|
||||
args[0] = "sleep";
|
||||
args[1] = "10";
|
||||
args[2] = NULL;
|
||||
|
||||
Reference in New Issue
Block a user