From a48174de23ef8f7288c58fe3580bcd499003ae13 Mon Sep 17 00:00:00 2001 From: David Hall Date: Fri, 20 Jan 2017 10:10:24 -0600 Subject: [PATCH] MCOL-455: fix crash caused by rewind of unopened redistribute plan file during display when no partitions have been planned to be moved. --- writeengine/redistribute/we_redistributecontrolthread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/writeengine/redistribute/we_redistributecontrolthread.cpp b/writeengine/redistribute/we_redistributecontrolthread.cpp index 652b48565..c43f83c3b 100644 --- a/writeengine/redistribute/we_redistributecontrolthread.cpp +++ b/writeengine/redistribute/we_redistributecontrolthread.cpp @@ -501,7 +501,7 @@ void RedistributeControlThread::displayPlan() if (!fControl->fPlanFilePtr) { ostringstream oss; - oss << "No data is scheduled to be moved" << endl; + oss << "No data is schefuled to be moved" << endl; fControl->logMessage(oss.str()); return; }