From a5680da3aae7596301760834986924aefeabace5 Mon Sep 17 00:00:00 2001 From: Peter Johnson Date: Fri, 12 May 2006 02:00:04 +0000 Subject: [PATCH] * 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 --- libyasm/value.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0