diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-06-20 15:02:46 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-06-21 09:35:34 +1000 |
commit | f3d6b742b18589306e0f19cc52e06f108fc1268e (patch) | |
tree | f27fc75fb273f477fbda6b8cce6a367283aaf097 /source3/lib | |
parent | 994abd2dea2164bb005209b77ec2608b4a5fe4e8 (diff) | |
download | samba-f3d6b742b18589306e0f19cc52e06f108fc1268e.tar.gz samba-f3d6b742b18589306e0f19cc52e06f108fc1268e.tar.bz2 samba-f3d6b742b18589306e0f19cc52e06f108fc1268e.zip |
lib/util Make unused d_vfprintf() static
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/dprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/dprintf.c b/source3/lib/dprintf.c index ad3c79a8d5..55ea7f9888 100644 --- a/source3/lib/dprintf.c +++ b/source3/lib/dprintf.c @@ -31,7 +31,7 @@ #include "includes.h" #include "intl/lang_tdb.h" - int d_vfprintf(FILE *f, const char *format, va_list ap) +static int d_vfprintf(FILE *f, const char *format, va_list ap) { char *p = NULL, *p2 = NULL; int ret, maxlen, clen; |