summaryrefslogtreecommitdiff
path: root/src/couchdb/priv/couch_js/utf8.c
diff options
context:
space:
mode:
authorMark Hammond <mhammond@apache.org>2009-11-27 06:41:39 +0000
committerMark Hammond <mhammond@apache.org>2009-11-27 06:41:39 +0000
commit05906b5fc0dd75fbca31463c10d07fb2eca7b83b (patch)
tree7f973dc6d6cca545ac43379265b6e6187393e2d6 /src/couchdb/priv/couch_js/utf8.c
parent0adab205f7a901cef89c7d67bc05cb5bd091dec8 (diff)
get windows building again
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@884751 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/couchdb/priv/couch_js/utf8.c')
-rw-r--r--src/couchdb/priv/couch_js/utf8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couchdb/priv/couch_js/utf8.c b/src/couchdb/priv/couch_js/utf8.c
index d6d6dd2b..699a6fee 100644
--- a/src/couchdb/priv/couch_js/utf8.c
+++ b/src/couchdb/priv/couch_js/utf8.c
@@ -12,7 +12,7 @@
#include <jsapi.h>
-static inline int
+static int
enc_char(uint8 *utf8Buffer, uint32 ucs4Char)
{
int utf8Length = 1;
@@ -150,7 +150,7 @@ success:
return bytes;
}
-static inline uint32
+static uint32
dec_char(const uint8 *utf8Buffer, int utf8Length)
{
uint32 ucs4Char;