X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/75fb17b891da5568773ee741ca5266edebe268c2..d051056f921f465c487a85f9fa29a2324332bc4b:/popt/popt.c diff --git a/popt/popt.c b/popt/popt.c index d17c31c6..9e007693 100644 --- a/popt/popt.c +++ b/popt/popt.c @@ -907,10 +907,10 @@ int poptGetNextOpt(poptContext con) #ifndef DBL_EPSILON #define DBL_EPSILON 2.2204460492503131e-16 #endif -#define _ABS(a) ((((a) - 0.0) < DBL_EPSILON) ? -(a) : (a)) - if ((_ABS(aDouble) - FLT_MAX) > DBL_EPSILON) +#define MY_ABS(a) ((((a) - 0.0) < DBL_EPSILON) ? -(a) : (a)) + if ((MY_ABS(aDouble) - FLT_MAX) > DBL_EPSILON) return POPT_ERROR_OVERFLOW; - if ((FLT_MIN - _ABS(aDouble)) > DBL_EPSILON) + if ((FLT_MIN - MY_ABS(aDouble)) > DBL_EPSILON) return POPT_ERROR_OVERFLOW; *((float *) opt->arg) = aDouble; } @@ -1055,7 +1055,7 @@ poptContext poptFreeContext(poptContext con) } int poptAddAlias(poptContext con, struct poptAlias alias, - /*@unused@*/ int flags) + /*@unused@*/ UNUSED(int flags)) { poptItem item = (poptItem) alloca(sizeof(*item)); memset(item, 0, sizeof(*item)); @@ -1128,7 +1128,7 @@ const char * poptBadOption(poptContext con, int flags) /*@=nullderef@*/ } -const char *const poptStrerror(const int error) +const char * poptStrerror(const int error) { switch (error) { case POPT_ERROR_NOARG: