Fix warnings on Solaris and/or 64bit builds.

This commit is contained in:
brectanus
2007-11-02 22:31:47 +00:00
parent 7f1c802b49
commit 5a54d3300d
10 changed files with 46 additions and 31 deletions

View File

@@ -460,9 +460,8 @@ apr_status_t modsecurity_process_phase(modsec_rec *msr, int phase) {
break;
default :
msr_log(msr, 1, "Invalid processing phase: %i", msr->phase);
return -1;
break;
}
return 0;
return -1;
}