mirror of https://github.com/BOINC/boinc.git
lib: remove unused variable char cmd_esc[1024]
svn path=/trunk/boinc/; revision=15913
This commit is contained in:
parent
dded9ec2e5
commit
85b0ec64cc
|
@ -6935,3 +6935,9 @@ David 20 Aug 2008
|
|||
create_forums.php
|
||||
user/
|
||||
team_search.php
|
||||
|
||||
Charlie 20 Aug 2008
|
||||
- lib: remove unused variable char cmd_esc[1024].
|
||||
|
||||
lib/
|
||||
filesys.C
|
||||
|
|
|
@ -496,7 +496,7 @@ int boinc_copy(const char* orig, const char* newf) {
|
|||
sprintf(cmd, "copy \"%s\" \"%s\"", orig, newf);
|
||||
return system(cmd);
|
||||
#else
|
||||
char cmd[1024], cmd_esc[1024];
|
||||
char cmd[1024];
|
||||
sprintf(cmd, "cp \"%s\" \"%s\"", orig, newf);
|
||||
return system(cmd);
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue