diff options
Diffstat (limited to 'gold/workqueue.h')
-rw-r--r-- | gold/workqueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gold/workqueue.h b/gold/workqueue.h index a17ec9d..7545224 100644 --- a/gold/workqueue.h +++ b/gold/workqueue.h @@ -150,8 +150,8 @@ class Task_function : public Task // RUNNER and BLOCKER should be allocated using new, and will be // deleted after the task runs. Task_function(Task_function_runner* runner, Task_token* blocker, - const char* tname) - : runner_(runner), blocker_(blocker), name_(tname) + const char* name) + : runner_(runner), blocker_(blocker), name_(name) { } ~Task_function() |