From: kramm Date: Tue, 23 Oct 2001 17:01:08 +0000 (+0000) Subject: * args.h is moved into lib X-Git-Tag: release-0-0-2~12 X-Git-Url: http://git.asbjorn.biz/?p=swftools.git;a=commitdiff_plain;h=fb8388aa3df14766cc0ab7a1c6274cfec774693d * args.h is moved into lib * fixed version display --- diff --git a/src/jpeg2swf.c b/src/jpeg2swf.c index 17e6226..cdcde70 100644 --- a/src/jpeg2swf.c +++ b/src/jpeg2swf.c @@ -15,8 +15,7 @@ #include #include #include "../lib/rfxswf.h" - -#include "args.h" // not really a header ;-) +#include "../lib/args.h" // not really a header ;-) #define MAX_INPUT_FILES 1024 #define VERBOSE(x) (global.verbose>=x) @@ -233,7 +232,7 @@ int args_callback_option(char*arg,char*val) if (val) global.force_height = atoi(val); res = 1; break; case 'V': - printf("jpeg2swf - part of swftools 0.0.1\n");exit(0); + printf("jpeg2swf - part of %s %s\n", PACKAGE, VERSION);exit(0); default: res = -1;