summaryrefslogtreecommitdiff
path: root/strings/apr_snprintf.c
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2002-02-12 01:02:41 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2002-02-12 01:02:41 +0000
commit5b52cdb644d606ea8b1124162c91f357a309be71 (patch)
tree10919bfe7cc15f949f71b4d4804cba65883c3df8 /strings/apr_snprintf.c
parent345fe356e95738e5557587257412ac597eee75d9 (diff)
downloadapr-5b52cdb644d606ea8b1124162c91f357a309be71.tar.gz
Formatting cleanup only - I'm now convince this code is clean - but some
products may identify the va_args from apr_Xsprintf() calls as living on another fn's stack [true] and toss up memory violations [not true.] git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@62948 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings/apr_snprintf.c')
-rw-r--r--strings/apr_snprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/strings/apr_snprintf.c b/strings/apr_snprintf.c
index 99053b647..20fb44326 100644
--- a/strings/apr_snprintf.c
+++ b/strings/apr_snprintf.c
@@ -1204,7 +1204,7 @@ static int snprintf_flush(apr_vformatter_buff_t *vbuff)
APR_DECLARE_NONSTD(int) apr_snprintf(char *buf, apr_size_t len,
- const char *format, ...)
+ const char *format, ...)
{
int cc;
va_list ap;
@@ -1225,7 +1225,7 @@ APR_DECLARE_NONSTD(int) apr_snprintf(char *buf, apr_size_t len,
APR_DECLARE(int) apr_vsnprintf(char *buf, apr_size_t len, const char *format,
- va_list ap)
+ va_list ap)
{
int cc;
apr_vformatter_buff_t vbuff;