diff options
| -rw-r--r-- | lib/trunnel/CodeGen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/trunnel/CodeGen.py b/lib/trunnel/CodeGen.py index 047a078..038cdd8 100644 --- a/lib/trunnel/CodeGen.py +++ b/lib/trunnel/CodeGen.py @@ -885,7 +885,7 @@ class PrototypeGenerationVisitor(CodeGenerator): was not long enough, and -1 if the input was invalid.""" % (name)) self.w( - "ssize_t %s_encode(uint8_t *output, const size_t avail, const %s_t *input%s);\n" % + "ssize_t %s_encode(uint8_t *output, size_t avail, const %s_t *input%s);\n" % (name, name, contextFormals)) self.docstring("""Check whether the internal state of the %s in |
