Skip to content

Commit 9cad1c4

Browse files
Denton-Lgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 7027f50 commit 9cad1c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compat/win32/pthread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ typedef struct {
5151
} pthread_t;
5252

5353
int pthread_create(pthread_t *thread, const void *unused,
54-
void *(*start_routine)(void*), void *arg);
54+
void *(*start_routine)(void*), void *arg);
5555

5656
/*
5757
* To avoid the need of copying a struct, we use small macro wrapper to pass

0 commit comments

Comments
 (0)