diff options
author | Andrew Bartlett <abartlet@samba.org> | 2003-01-02 12:54:02 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2003-01-02 12:54:02 +0000 |
commit | a746483fd8eda59a0f42719186912ceabba2f4ac (patch) | |
tree | 41bcf9c9781d572ba675c2a233e969956ed5accf /source3/lib/xfile.c | |
parent | e030b91bf8416654007daa1f493b36fb59cf5b58 (diff) | |
download | samba-a746483fd8eda59a0f42719186912ceabba2f4ac.tar.gz samba-a746483fd8eda59a0f42719186912ceabba2f4ac.tar.bz2 samba-a746483fd8eda59a0f42719186912ceabba2f4ac.zip |
Add PRINTF_ATTRIBUTE() to a few more printf() style functions. Aids in
compiler-based argument checking.
(This used to be commit 16fe928e68623a878b125910ff83df500a29d0ce)
Diffstat (limited to 'source3/lib/xfile.c')
-rw-r--r-- | source3/lib/xfile.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/xfile.c b/source3/lib/xfile.c index 7621712e9a..57f3e27638 100644 --- a/source3/lib/xfile.c +++ b/source3/lib/xfile.c @@ -184,7 +184,7 @@ int x_fwrite(const void *p, size_t size, size_t nmemb, XFILE *f) } /* thank goodness for asprintf() */ -int x_vfprintf(XFILE *f, const char *format, va_list ap) + int x_vfprintf(XFILE *f, const char *format, va_list ap) { char *p; int len, ret; @@ -199,7 +199,7 @@ int x_vfprintf(XFILE *f, const char *format, va_list ap) return ret; } -int x_fprintf(XFILE *f, const char *format, ...) + int x_fprintf(XFILE *f, const char *format, ...) { va_list ap; int ret; |