diff options
Diffstat (limited to 'lib/poptBT.c')
-rw-r--r-- | lib/poptBT.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/poptBT.c b/lib/poptBT.c index 4ec6981ce..885723da8 100644 --- a/lib/poptBT.c +++ b/lib/poptBT.c @@ -127,11 +127,13 @@ static void buildArgCallback( /*@unused@*/ poptContext con, /** */ -/*@-bitwisesigned -compmempass@*/ +/*@-bitwisesigned -compmempass @*/ /*@unchecked@*/ struct poptOption rpmBuildPoptTable[] = { +/*@-type@*/ /* FIX: cast? */ { NULL, '\0', POPT_ARG_CALLBACK | POPT_CBFLAG_INC_DATA, buildArgCallback, 0, NULL, NULL }, +/*@=type@*/ { "bp", 0, POPT_ARGFLAG_ONEDASH, 0, POPT_BP, N_("build through %prep (unpack sources and apply patches) from <specfile>"), @@ -218,4 +220,4 @@ struct poptOption rpmBuildPoptTable[] = { POPT_TABLEEND }; -/*@=bitwisesigned =compmempass@*/ +/*@=bitwisesigned =compmempass @*/ |