Skip to content
Snippets Groups Projects
Commit 598a77b8 authored by Fons Rademakers's avatar Fons Rademakers
Browse files

fix hiding issue cause by previous edit.

git-svn-id: http://root.cern.ch/svn/root/trunk@41756 27541ba8-7e3a-0410-8455-c3a389f83636
parent 88d6c37f
No related branches found
No related tags found
No related merge requests found
......@@ -156,8 +156,8 @@ public:
DbgLog("Main thread. Try to push a task");
TLockGuard lock(&fMutex);
task_t *task = new task_t(task, param);
fTasks.push(task);
task_t *t = new task_t(task, param);
fTasks.push(t);
++fTasksCount;
DbgLog("Main thread. the task is pushed");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment