aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2009-03-24 23:09:46 +0000
committerBadlop <badlop@process-one.net>2009-03-24 23:09:46 +0000
commit1f3acfc83f71396b08c43b2fe953620e9b332365 (patch)
tree5f980a2911e766229bcd3bbce41708e8ac741216
parentMerge 1998 from trunk. (diff)
* src/expat_erl.c: Fix implicit declaration of function
x_fix_buff (thanks to Dennis Schridde)(EJAB-900) SVN Revision: 2000
-rw-r--r--ChangeLog5
-rw-r--r--src/expat_erl.c2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d4eba62a..48514a863 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-03-25 Badlop <badlop@process-one.net>
+
+ * src/expat_erl.c: Fix implicit declaration of function
+ x_fix_buff (thanks to Dennis Schridde)(EJAB-900)
+
2009-03-24 Badlop <badlop@process-one.net>
* src/ejabberd_sm.erl: Partially retract SVN r1976
diff --git a/src/expat_erl.c b/src/expat_erl.c
index e4c3fd10b..a9cce6e76 100644
--- a/src/expat_erl.c
+++ b/src/expat_erl.c
@@ -14,6 +14,8 @@
* Workaround for EI encode_string bug
*/
+int x_fix_buff(ei_x_buff* x, int szneeded);
+
#define put8(s,n) do { \
(s)[0] = (char)((n) & 0xff); \
(s) += 1; \