Drop a duplicate instruction line

No functional change intended.
This commit is contained in:
kamil 2018-08-19 02:10:42 +00:00
parent 961edc0411
commit 66f17364ec
1 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: pthread.c,v 1.151 2017/12/08 09:24:31 kre Exp $ */
/* $NetBSD: pthread.c,v 1.152 2018/08/19 02:10:42 kamil Exp $ */
/*-
* Copyright (c) 2001, 2002, 2003, 2006, 2007, 2008 The NetBSD Foundation, Inc.
@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
__RCSID("$NetBSD: pthread.c,v 1.151 2017/12/08 09:24:31 kre Exp $");
__RCSID("$NetBSD: pthread.c,v 1.152 2018/08/19 02:10:42 kamil Exp $");
#define __EXPOSE_STACK 1
@ -1322,7 +1322,6 @@ pthread__initmainstack(void)
for (aux = _dlauxinfo(); aux->a_type != AT_NULL; ++aux) {
if (aux->a_type == AT_STACKBASE) {
pthread__main->pt_stack.ss_sp = (void *)aux->a_v;
#ifdef __MACHINE_STACK_GROWS_UP
pthread__main->pt_stack.ss_sp = (void *)aux->a_v;
#else