Skip to content

Commit

Permalink
Fix if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
dangars committed Apr 10, 2020
1 parent 4278087 commit 6d71b8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/step-69/step-69.cc
Expand Up @@ -2867,7 +2867,7 @@ namespace Step69
// At this point we can return from the <code>output()</code> function
// and resume with the time stepping in the main loop - the thread will
// run in the background.
if (!asynchronous_writeback)
if (asynchronous_writeback)
{
#ifdef DEAL_II_WITH_THREADS
background_thread_state = std::async(std::launch::async, output_worker);
Expand Down

0 comments on commit 6d71b8e

Please sign in to comment.