From f5371440e08b9626b92f0e24a0a5c93318ef4d20 Mon Sep 17 00:00:00 2001 From: Joel Brobecker Date: Fri, 4 Oct 2013 08:56:09 +0000 Subject: Fix syntax error in aix-thread.c:sync_threadlists This patch fixes a small typo after the BUILD_THREAD -> ptid_build conversion. gdb/ChangeLog: * aix-thread.c (sync_threadlists): Add missing ')' in call to ptid_build. --- gdb/aix-thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/aix-thread.c') diff --git a/gdb/aix-thread.c b/gdb/aix-thread.c index 31c14e0..3175835 100644 --- a/gdb/aix-thread.c +++ b/gdb/aix-thread.c @@ -756,7 +756,7 @@ sync_threadlists (void) } else if (gi == gcount) { - thread = add_thread (ptid_build (infpid, 0, pbuf[pi].pthid); + thread = add_thread (ptid_build (infpid, 0, pbuf[pi].pthid)); thread->private = xmalloc (sizeof (struct private_thread_info)); thread->private->pdtid = pbuf[pi].pdtid; thread->private->tid = pbuf[pi].tid; -- cgit v1.1