diff options
author | Denton Liu <liu.denton@gmail.com> | 2019-10-10 12:37:04 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-10-11 14:59:35 +0900 |
commit | 9cad1c4488d598c62f2b33876d784c0706c4250a (patch) | |
tree | f006f74e7f2d2d2e4e928802ab996c1cddb1d098 /compat/win32/pthread.h | |
parent | compat/*.[ch]: remove extern from function declarations using spatch (diff) | |
download | tgif-9cad1c4488d598c62f2b33876d784c0706c4250a.tar.xz |
pthread.h: manually align parameter lists
In previous patches, extern was mechanically removed from function
declarations without care to formatting, causing parameter lists to be
misaligned. Manually format changed sections such that the parameter
lists are realigned.
Viewing this patch with 'git diff -w' should produce no output.
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat/win32/pthread.h')
-rw-r--r-- | compat/win32/pthread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compat/win32/pthread.h b/compat/win32/pthread.h index f1cfe73de9..737983d00b 100644 --- a/compat/win32/pthread.h +++ b/compat/win32/pthread.h @@ -51,7 +51,7 @@ typedef struct { } pthread_t; int pthread_create(pthread_t *thread, const void *unused, - void *(*start_routine)(void*), void *arg); + void *(*start_routine)(void*), void *arg); /* * To avoid the need of copying a struct, we use small macro wrapper to pass |