diff options
author | 2003-08-06 21:08:05 +0000 | |
---|---|---|
committer | 2003-08-06 21:08:05 +0000 | |
commit | 7b42523597ebbd7f829fb3307a584d24d2ee1ca3 (patch) | |
tree | a7bb74286beaa668e4a894ba845c11ec383cea0e /lib/libpthread | |
parent | must pre-def struct file before circular structs (diff) | |
download | wireguard-openbsd-7b42523597ebbd7f829fb3307a584d24d2ee1ca3.tar.xz wireguard-openbsd-7b42523597ebbd7f829fb3307a584d24d2ee1ca3.zip |
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'lib/libpthread')
-rw-r--r-- | lib/libpthread/uthread/uthread_fork.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/libpthread/uthread/uthread_fork.c b/lib/libpthread/uthread/uthread_fork.c index 0271e822526..02f7656859b 100644 --- a/lib/libpthread/uthread/uthread_fork.c +++ b/lib/libpthread/uthread/uthread_fork.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uthread_fork.c,v 1.10 2001/08/21 19:24:53 fgsch Exp $ */ +/* $OpenBSD: uthread_fork.c,v 1.11 2003/08/06 21:08:05 millert Exp $ */ /* * Copyright (c) 1995-1998 John Birrell <jb@cimlogic.com.au> * All rights reserved. @@ -167,10 +167,10 @@ fork(void) _thread_fd_table[i]->w_owner = NULL; _thread_fd_table[i]->r_fname = NULL; _thread_fd_table[i]->w_fname = NULL; - _thread_fd_table[i]->r_lineno = 0;; - _thread_fd_table[i]->w_lineno = 0;; - _thread_fd_table[i]->r_lockcount = 0;; - _thread_fd_table[i]->w_lockcount = 0;; + _thread_fd_table[i]->r_lineno = 0; + _thread_fd_table[i]->w_lineno = 0; + _thread_fd_table[i]->r_lockcount = 0; + _thread_fd_table[i]->w_lockcount = 0; /* Initialise the read/write queues: */ TAILQ_INIT(&_thread_fd_table[i]->r_queue); |