1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-04 08:22:08 +03:00

get rid of compiler warnings

This commit is contained in:
Herb Lewis
-
parent 61bea183a2
commit ae25e7746e
2 changed files with 2 additions and 2 deletions

View File

@ -311,7 +311,7 @@ BOOL in_group(gid_t group, gid_t current_gid, int ngroups, const gid_t *groups)
static const char *Atoic(const char *p, int *n, const char *c)
{
if (!isdigit((const int)*p)) {
if (!isdigit((int)*p)) {
DEBUG(5, ("Atoic: malformed number\n"));
return NULL;
}