lib: remove unused variable char cmd_esc[1024]

svn path=/trunk/boinc/; revision=15913
This commit is contained in:
Charlie Fenton 2008-08-20 22:19:54 +00:00
parent dded9ec2e5
commit 85b0ec64cc
2 changed files with 7 additions and 1 deletions

View File

@ -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

View File

@ -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