From: kramm Date: Sun, 23 Nov 2008 14:01:48 +0000 (+0000) Subject: if page range is given and % filename syntax is used, name files according to page... X-Git-Tag: release-0-9-0~776 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=33d53306bf9f5faa13bf6e1071d2acf35e1e1c30 if page range is given and % filename syntax is used, name files according to page number --- diff --git a/src/pdf2swf.c b/src/pdf2swf.c index e68bb7c..1c476c1 100644 --- a/src/pdf2swf.c +++ b/src/pdf2swf.c @@ -825,7 +825,7 @@ int main(int argn, char *argv[]) if(one_file_per_page) { gfxresult_t*result = out->finish(out);out=0; char buf[1024]; - sprintf(buf, outputname, one_file_per_page++); + sprintf(buf, outputname, pagenr); if(result->save(result, buf) < 0) { return 1; }