diff options
author | Volker Lendecke <vl@samba.org> | 2014-07-29 12:22:05 +0000 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-07-31 18:49:46 +0200 |
commit | 6c9be497a3f41824411fe2507b4183d764a5f58e (patch) | |
tree | 825dbbe8f6e9180b988abbcc591d609e128366db /lib/util/debug.c | |
parent | 15813561cce814adb6f94753dc6dda108be1eb77 (diff) | |
download | samba-6c9be497a3f41824411fe2507b4183d764a5f58e.tar.gz samba-6c9be497a3f41824411fe2507b4183d764a5f58e.tar.xz samba-6c9be497a3f41824411fe2507b4183d764a5f58e.zip |
debug: Make Debug1 static
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'lib/util/debug.c')
-rw-r--r-- | lib/util/debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/debug.c b/lib/util/debug.c index 84b197cf60..73e5c5b485 100644 --- a/lib/util/debug.c +++ b/lib/util/debug.c @@ -767,7 +767,7 @@ void check_log_size( void ) This is called by dbghdr() and format_debug_text(). ************************************************************************/ - int Debug1( const char *format_str, ... ) +static int Debug1( const char *format_str, ... ) { va_list ap; int old_errno = errno; |