X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=client-src%2Fversionsuffix.c;h=91d070000c3d443e56157c87137d0b0355267dd9;hb=4fd9649694a4fcb4d4f364fe66e568a889feee20;hp=4d60148e17d3f86cbd4ec0c72397797571c91f48;hpb=bde83ad58d800ae004caccab6531234272181da2;p=debian%2Famanda diff --git a/client-src/versionsuffix.c b/client-src/versionsuffix.c index 4d60148..91d0700 100644 --- a/client-src/versionsuffix.c +++ b/client-src/versionsuffix.c @@ -24,17 +24,22 @@ * file named AUTHORS, in the root directory of this distribution. */ /* - * $Id: versionsuffix.c,v 1.6.12.1 2005/09/20 21:31:52 jrjackson Exp $ + * $Id: versionsuffix.c,v 1.9 2006/05/25 01:47:11 johnfranks Exp $ * * prints the (possibly empty) suffix appended to amanda program names */ #include "amanda.h" #include "version.h" -int main() +int main(int argc, char **argv); + +int main(int argc, char **argv) { safe_fd(-1, 0); + (void)argc; /* Quiet unused parameter warning */ + (void)argv; /* Quiet unused parameter warning */ + set_pname("versionsuffix"); printf("%s\n", versionsuffix());