mirror of
https://github.com/samba-team/samba.git
synced 2025-11-11 00:23:51 +03:00
r15005: Fix printf args to remove warnings.
Jeremy.
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
1e0b79e591
commit
68d100830c
@@ -448,9 +448,9 @@ BOOL unmap_file(void* start, size_t size)
|
|||||||
{
|
{
|
||||||
#ifdef HAVE_MMAP
|
#ifdef HAVE_MMAP
|
||||||
if ( munmap( start, size ) != 0 ) {
|
if ( munmap( start, size ) != 0 ) {
|
||||||
DEBUG( 1, ("map_file: Failed to unmap address %X "
|
DEBUG( 1, ("map_file: Failed to unmap address %p "
|
||||||
"of size %d - %s\n",
|
"of size %u - %s\n",
|
||||||
start, size, strerror(errno) ));
|
start, (unsigned int)size, strerror(errno) ));
|
||||||
return False;
|
return False;
|
||||||
}
|
}
|
||||||
return True;
|
return True;
|
||||||
|
|||||||
Reference in New Issue
Block a user