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