summaryrefslogtreecommitdiff
path: root/strings
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-02-12 01:02:41 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2002-02-12 01:02:41 +0000
commit642bb879723aa0e82dd39b22e916f6efa5db15d2 (patch)
tree10919bfe7cc15f949f71b4d4804cba65883c3df8 /strings
parent01f479d6dd436a22cc286a495429e6d6963f43bf (diff)
downloadlibapr-642bb879723aa0e82dd39b22e916f6efa5db15d2.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: http://svn.apache.org/repos/asf/apr/apr/trunk@62948 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings')
-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;