summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjim <jim@13f79535-47bb-0310-9956-ffa450edef68>1999-12-13 13:39:23 +0000
committerjim <jim@13f79535-47bb-0310-9956-ffa450edef68>1999-12-13 13:39:23 +0000
commitfe2a4847f7c253979b2b08bc3e13efa3c4fb699b (patch)
tree7eab1a4f7aaa5d75a2039f67a9b78ed02051aa2e /lib
parent5617814abf59820a4e2f77098a10117a56ea74d5 (diff)
downloadlibapr-fe2a4847f7c253979b2b08bc3e13efa3c4fb699b.tar.gz
Use the ap_vformatter_buff_t type :)
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59516 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'lib')
-rw-r--r--lib/apr_snprintf.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/apr_snprintf.c b/lib/apr_snprintf.c
index 6d82a8179..b90dc22b8 100644
--- a/lib/apr_snprintf.c
+++ b/lib/apr_snprintf.c
@@ -656,8 +656,8 @@ static char *conv_p2_quad(u_widest_int num, register int nbits,
/*
* Do format conversion placing the output in buffer
*/
-API_EXPORT(int) ap_vformatter(int (*flush_func)(ap_vformatter_buff *),
- ap_vformatter_buff *vbuff, const char *fmt, va_list ap)
+API_EXPORT(int) ap_vformatter(int (*flush_func)(ap_vformatter_buff_t *),
+ ap_vformatter_buff_t *vbuff, const char *fmt, va_list ap)
{
register char *sp;
register char *bep;
@@ -1149,7 +1149,7 @@ API_EXPORT(int) ap_vformatter(int (*flush_func)(ap_vformatter_buff *),
}
-static int snprintf_flush(ap_vformatter_buff *vbuff)
+static int snprintf_flush(ap_vformatter_buff_t *vbuff)
{
/* if the buffer fills we have to abort immediately, there is no way
* to "flush" an ap_snprintf... there's nowhere to flush it to.
@@ -1162,7 +1162,7 @@ API_EXPORT(int) ap_snprintf(char *buf, size_t len, const char *format,...)
{
int cc;
va_list ap;
- ap_vformatter_buff vbuff;
+ ap_vformatter_buff_t vbuff;
if (len == 0)
return 0;
@@ -1182,7 +1182,7 @@ API_EXPORT(int) ap_vsnprintf(char *buf, size_t len, const char *format,
va_list ap)
{
int cc;
- ap_vformatter_buff vbuff;
+ ap_vformatter_buff_t vbuff;
if (len == 0)
return 0;