From: Denton Liu Date: Thu, 10 Oct 2019 19:37:04 +0000 (-0700) Subject: pthread.h: manually align parameter lists X-Git-Tag: v2.24.0-rc0~9^2 X-Git-Url: http://git.bitbasher.net/?a=commitdiff_plain;h=9cad1c4488d598c62f2b33876d784c0706c4250a;p=git.git 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 Signed-off-by: Junio C Hamano --- 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