From fa21baafce1f82ac7042150b4ebe5bcdad02abba Mon Sep 17 00:00:00 2001 From: taipanromania Date: Thu, 18 Sep 2008 14:36:31 +0000 Subject: [PATCH] change VERSION to ZINT_VERSION --- backend/ps.c | 2 +- frontend/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/ps.c b/backend/ps.c index ab8f0cca..ad3504b5 100644 --- a/backend/ps.c +++ b/backend/ps.c @@ -167,7 +167,7 @@ int ps_plot(struct zint_symbol *symbol) /* Start writing the header */ fprintf(feps, "%!PS-Adobe-3.0 EPSF-3.0\n"); - fprintf(feps, "%%%%Creator: Zint %s\n", VERSION); + fprintf(feps, "%%%%Creator: Zint %s\n", ZINT_VERSION); if(strlen(symbol->text) != 0) { fprintf(feps, "%%%%Title: %s\n",symbol->text); } else { diff --git a/frontend/main.c b/frontend/main.c index 56a17734..7ec0a59c 100644 --- a/frontend/main.c +++ b/frontend/main.c @@ -50,7 +50,7 @@ void usage(void) " --secure=NUMBER (PDF417 and QR Code) Error correction level.\n" " --primary=STRING (Maxicode and Composite) Structured primary message.\n" " --mode=NUMBER (Maxicode and Composite) Set encoding mode.\n" - , VERSION); + , ZINT_VERSION); } int main(int argc, char **argv)