diff host/tools/configtool/standalone/win32/MainFrm.cpp @ 80:2085233a121a ecos-sw-2000-04-07

Merge from eCos master repository on 2000-04-07-07:52:29-BST
author jlarmour
date Fri, 07 Apr 2000 07:45:04 +0000
parents 435cced73e2f
children 6736c52df507
line wrap: on
line diff
--- a/host/tools/configtool/standalone/win32/MainFrm.cpp
+++ b/host/tools/configtool/standalone/win32/MainFrm.cpp
@@ -1235,10 +1235,12 @@ void CMainFrame::CygMount(TCHAR c)
   c=towlower(c);
   if(!m_arMounted[c-_TCHAR('a')]){
     m_arMounted[c-_TCHAR('a')]=true;
-    CString strCmd,strOutput;
+    CString strCmd;
+    String strOutput;
 
     strCmd.Format(_T("mount %c: /%c"),c,c);
-    CSubprocess::Run(strOutput,strCmd);
+    CSubprocess sub;
+    sub.Run(strOutput,strCmd);
   }
 }