diff options
author | Andreas Schneider <asn@samba.org> | 2010-08-09 15:57:38 +0200 |
---|---|---|
committer | Simo Sorce <idra@samba.org> | 2010-08-13 12:20:10 -0400 |
commit | 9ab62b774f071be83375a4b2544a7e70e147e699 (patch) | |
tree | 5100f8931b590cea99b56a409fd469c8c20994e3 | |
parent | 4a5cef82d8c2a0f35e9c06a0dc262fdb367279a1 (diff) | |
download | samba-9ab62b774f071be83375a4b2544a7e70e147e699.tar.gz samba-9ab62b774f071be83375a4b2544a7e70e147e699.tar.bz2 samba-9ab62b774f071be83375a4b2544a7e70e147e699.zip |
s3-smbd: Fixed indent.
Signed-off-by: Simo Sorce <idra@samba.org>
-rw-r--r-- | source3/smbd/files.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/smbd/files.c b/source3/smbd/files.c index 7ad5ce3ae6..9a7c5b0e81 100644 --- a/source3/smbd/files.c +++ b/source3/smbd/files.c @@ -189,8 +189,9 @@ void file_init(void) real_max_open_files = 65536 - FILE_HANDLE_OFFSET - MAX_OPEN_PIPES; if(real_max_open_files != request_max_open_files) { - DEBUG(1,("file_init: Information only: requested %d \ -open files, %d are available.\n", request_max_open_files, real_max_open_files)); + DEBUG(1, ("file_init: Information only: requested %d " + "open files, %d are available.\n", + request_max_open_files, real_max_open_files)); } SMB_ASSERT(real_max_open_files > 100); |