diff options
author | Badlop <badlop@process-one.net> | 2009-03-24 23:09:46 +0000 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2009-03-24 23:09:46 +0000 |
commit | 1f3acfc83f71396b08c43b2fe953620e9b332365 (patch) | |
tree | 5f980a2911e766229bcd3bbce41708e8ac741216 | |
parent | Merge 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-- | ChangeLog | 5 | ||||
-rw-r--r-- | src/expat_erl.c | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -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; \ |