From 184ea2f7316c54dd5e0fa84f1fe07a222e8fb44c Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 16 Sep 2021 13:06:27 -0600 Subject: Remove defaulted 'tid' parameter to ptid_t constructor I wanted to find, and potentially modify, all the spots where the 'tid' parameter to the ptid_t constructor was used. So, I temporarily removed this parameter and then rebuilt. In order to make it simpler to search through the "real" (nonzero) uses of this parameter, something I knew I'd have to do multiple times, I removed any ", 0" from constructor calls. Co-Authored-By: John Baldwin --- gdb/linux-fork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gdb/linux-fork.c') diff --git a/gdb/linux-fork.c b/gdb/linux-fork.c index 1559ad9..83a124b 100644 --- a/gdb/linux-fork.c +++ b/gdb/linux-fork.c @@ -41,7 +41,7 @@ struct fork_info { explicit fork_info (pid_t pid) - : ptid (pid, pid, 0) + : ptid (pid, pid) { } -- cgit v1.1