summaryrefslogtreecommitdiff
path: root/strings/apr_snprintf.c
diff options
context:
space:
mode:
authorjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2002-08-27 02:04:04 +0000
committerjim <jim@13f79535-47bb-0310-9956-ffa450edef68>2002-08-27 02:04:04 +0000
commit9bb21fb445d2aafa2403d962b32d333357da06f6 (patch)
tree9a1570a33653f1351f2de54b29bb592f0461dc94 /strings/apr_snprintf.c
parentb15a25b5ce98b996ea3eb1e5225bf080851746ee (diff)
downloadlibapr-9bb21fb445d2aafa2403d962b32d333357da06f6.tar.gz
fix typo before someone else notices it and pounces :)
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63835 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'strings/apr_snprintf.c')
-rw-r--r--strings/apr_snprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/apr_snprintf.c b/strings/apr_snprintf.c
index 3256fbd24..b282f246b 100644
--- a/strings/apr_snprintf.c
+++ b/strings/apr_snprintf.c
@@ -1281,7 +1281,7 @@ APR_DECLARE(int) apr_vsnprintf(char *buf, apr_size_t len, const char *format,
apr_vformatter_buff_t vbuff;
if (len == 0) {
- /* See above notee */
+ /* See above note */
vbuff.curpos = NULL;
vbuff.endpos = NULL;
} else {