Skip to content

Commit a899a66

Browse files
committed
fix trailing spaces
1 parent 47f3132 commit a899a66

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Modules/_multiprocessing/semaphore.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1513,7 +1513,7 @@ semlock_dealloc(SemLockObject* self)
15131513
semlock_impl as calls to semlock_dealloc
15141514
In "spawn" start method, there are as calls to semlock_dealloc as
15151515
calls to semlock_impl plus calls to semlock_rebuild.
1516-
Here, it's not possible to known to teh real start method.
1516+
Here, it's not possible to known to teh real start method.
15171517
So we have to search if sempahore already exists yet.
15181518
*/
15191519
int n_opened_sems = -1;
@@ -1529,7 +1529,7 @@ semlock_dealloc(SemLockObject* self)
15291529
if (self->counter->unlink == 1) {
15301530
n_opened_sems = remove_counter(self->counter);
15311531
DEBUG_PID_FUNC(self->name, self->handle_mutex, self->counter, "remove counter");
1532-
}
1532+
}
15331533
RELEASE_GLOCK;
15341534
if (n_opened_sems == 0) {
15351535
delete_glock();

0 commit comments

Comments
 (0)