mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 12:20:00 -04:00
cast mode to unsigned int for fprintf
This commit is contained in:
parent
1cb0b6f8df
commit
328bbfbe9a
1 changed files with 1 additions and 1 deletions
|
|
@ -592,7 +592,7 @@ dst__privstruct_writefile(const dst_key_t *key, const dst_private_t *priv,
|
|||
"Permissions on the file %s "
|
||||
"have changed from 0%o to 0600 as "
|
||||
"a result of this operation.",
|
||||
filename, mode);
|
||||
filename, (unsigned int)mode);
|
||||
}
|
||||
|
||||
if ((fp = fopen(filename, "w")) == NULL)
|
||||
|
|
|
|||
Loading…
Reference in a new issue