diff options
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_file.c b/source3/lib/util_file.c index 549766b137..88d03e7472 100644 --- a/source3/lib/util_file.c +++ b/source3/lib/util_file.c @@ -435,7 +435,7 @@ void *map_file(char *fname, size_t size) int fd; fd = open(fname, O_RDONLY, 0); if (fd == -1) { - DEBUG(1,("Failed to load %s - %s\n", fname, strerror(errno))); + DEBUG(2,("Failed to load %s - %s\n", fname, strerror(errno))); return NULL; } p = mmap(NULL, size, PROT_READ, MAP_SHARED|MAP_FILE, fd, 0); |