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>

Denton Liu committed Oct 10, 2019 at 12:37 UTC 9cad1c4488d598c62f2b33876d784c0706c4250a
1 file changed +1 -1
compat/win32/pthread.h
+1 -1
@@ -51,7 +51,7 @@ typedef struct {
51 } pthread_t;
52
53 int pthread_create(pthread_t *thread, const void *unused,
54 - void *(*start_routine)(void*), void *arg);
54 + void *(*start_routine)(void*), void *arg);
55
56 /*
57 * To avoid the need of copying a struct, we use small macro wrapper to pass