From: Peter Johnson Date: Fri, 12 May 2006 02:00:04 +0000 (-0000) Subject: * value.c (yasm_value_output_basic): The destsize parameter accidentally got X-Git-Tag: v0.5.0~8^2~1 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a5680da3aae7596301760834986924aefeabace5;p=yasm * value.c (yasm_value_output_basic): The destsize parameter accidentally got out of sync with the header file (should be size_t). svn path=/trunk/yasm/; revision=1539 --- diff --git a/libyasm/value.c b/libyasm/value.c index 5f02f5b4..1a0c8b61 100644 --- a/libyasm/value.c +++ b/libyasm/value.c @@ -427,7 +427,7 @@ yasm_value_finalize(yasm_value *value) int yasm_value_output_basic(yasm_value *value, /*@out@*/ unsigned char *buf, - unsigned int destsize, yasm_bytecode *bc, int warn, + size_t destsize, yasm_bytecode *bc, int warn, yasm_arch *arch, yasm_calc_bc_dist_func calc_bc_dist) { /*@dependent@*/ /*@null@*/ yasm_intnum *intn = NULL;