*** empty log message ***

svn path=/trunk/boinc/; revision=5477
This commit is contained in:
David Anderson 2005-02-18 23:50:38 +00:00
parent 09d574d246
commit 9c2889e1c8
3 changed files with 11 additions and 3 deletions

View File

@ -25019,3 +25019,11 @@ David 18 Feb 2005
app_start.C
cs_account.C
scheduler_op.C
David 18 Feb 2005
- fix gcc warning
- printf in http.C had wrong conversion character
client/
app_start.C
http.C

View File

@ -267,7 +267,7 @@ int ACTIVE_TASK::start(bool first_time) {
//
strcpy(exec_name, "");
for (i=0; i<app_version->app_files.size(); i++) {
FILE_REF fref = app_version->app_files[i];
fref = app_version->app_files[i];
fip = fref.file_info;
get_pathname(fip, file_path);
if (fref.main_program) {
@ -454,7 +454,7 @@ int ACTIVE_TASK::start(bool first_time) {
// Postcondition: "state" is set correctly
//
int ACTIVE_TASK::resume_or_start() {
char* str = "??";
const char* str = "??";
int retval;
switch (task_state) {

View File

@ -834,7 +834,7 @@ bool HTTP_OP_SET::poll(double) {
scope_messages.printf(
"HTTP_OP_SET::poll(): ERR_IO: bytes_xferred: %d,"
"file offset: %d, expected content length: %d\n",
htp->bytes_xferred, htp->file_offset, htp->hrh.content_length
(int)htp->bytes_xferred, (int)htp->file_offset, htp->hrh.content_length
);
htp->http_op_retval = ERR_IO;
}