X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=doc%2Fpcrs.3;h=2a96d5a0395173f9c87852636ab07bc1f0a0a26d;hb=025e7eebcecd0c8ac382b37c32e25e7516751540;hp=d5d202203bac5afd191cf73d94ef26f173cbf84f;hpb=9353f7d279365ee2fa51b6f38c160ae1dc07a52f;p=privoxy.git diff --git a/doc/pcrs.3 b/doc/pcrs.3 index d5d20220..2a96d5a0 100644 --- a/doc/pcrs.3 +++ b/doc/pcrs.3 @@ -17,15 +17,15 @@ .\" .\" You should have received a copy of the GNU General Public .\" License along with this manual; if not, write to the Free -.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, -.\" USA. +.\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, +.\" MA 02111, USA. .\" -.TH PCRS 3 "4 March 2002" +.TH PCRS 3 "4 March 2002" "pcrs-0.0.1" .SH NAME pcrs - Perl-compatible regular substitution. .SH SYNOPSIS .br -.BI "#include " +.B "#include " .PP .br .BI "pcrs_job *pcrs_compile(const char *" pattern "," @@ -405,7 +405,8 @@ int main(int Argc, char **Argv) { pcrs_job *job; char *result; - int newsize, err; + size_t newsize; + int err; if (Argc != 3) { @@ -415,12 +416,12 @@ int main(int Argc, char **Argv) if (NULL == (job = pcrs_compile_command(Argv[1], &err))) { - printf("Compile error: %s (%d).\\n", pcrs_strerror(err), err); + fprintf(stderr, "%s: compile error: %s (%d).\\n", Argv[0], pcrs_strerror(err), err); } if (0 > (err = pcrs_execute(job, Argv[2], strlen(Argv[2]) + 1, &result, &newsize))) { - printf("Exec error: %s (%d).\\n", pcrs_strerror(err), err); + fprintf(stderr, "%s: Exec error: %s (%d).\\n", Argv[0], pcrs_strerror(err), err); } else {