From a6b1b244a6d5114fbfb3102ff370a46511b217d9 Mon Sep 17 00:00:00 2001 From: kramm Date: Fri, 26 Sep 2008 11:31:00 +0000 Subject: [PATCH] fixed two typos in error messages --- src/pdf2swf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pdf2swf.c b/src/pdf2swf.c index 8308d76..a011db6 100644 --- a/src/pdf2swf.c +++ b/src/pdf2swf.c @@ -679,11 +679,11 @@ int main(int argn, char *argv[]) if((u = strchr(outputname, '%'))) { if(strchr(u+1, '%') || strchr(outputname, '%')!=u) { - msg(" only one %%d allowed in filename\n"); + msg(" only one %% allowed in filename\n"); return 1; } if(preloader || viewer) { - msg(" -b/-l/-B/-L not supported together with %%d in filename\n"); + msg(" -b/-l/-B/-L not supported together with %% in filename\n"); return 1; } msg(" outputting one file per page"); -- 1.7.10.4