Update of /cvsroot/compbench/CompBenchmarks++/System
In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv28237
Modified Files:
System-Unix.cpp
Log Message:
Fixes potential compiling issues on copy();
Index: System-Unix.cpp
===================================================================
RCS file: /cvsroot/compbench/CompBenchmarks++/System/System-Unix.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** System-Unix.cpp 24 Sep 2006 16:30:43 -0000 1.3
--- System-Unix.cpp 3 Oct 2006 15:46:56 -0000 1.4
***************
*** 26,30 ****
{
std::string cmd;
! std::string stdout;
cmd="cp -f ";
--- 26,30 ----
{
std::string cmd;
! std::string sstdout;
cmd="cp -f ";
***************
*** 33,37 ****
cmd+=to;
! return(exec(cmd, stdout));
}
--- 33,37 ----
cmd+=to;
! return(exec(cmd, sstdout));
}
|