From fca9e9ce6925fe84f79fee6662c7396a1f570582 Mon Sep 17 00:00:00 2001 From: Sebastian Hack Date: Wed, 15 Mar 2006 16:22:30 +0000 Subject: [PATCH] Fixed a bug --- ir/be/bearch.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/be/bearch.c b/ir/be/bearch.c index 63a8ed0b5..183d13538 100644 --- a/ir/be/bearch.c +++ b/ir/be/bearch.c @@ -227,12 +227,12 @@ extern char *arch_register_req_format(char *buf, size_t len, const arch_register } if(arch_register_req_is(req, should_be_same)) { - snprintf(tmp, sizeof(tmp), " same to: %+F", req->other_different); + ir_snprintf(tmp, sizeof(tmp), " same to: %+F", req->other_different); strncat(buf, tmp, len); } if(arch_register_req_is(req, should_be_different)) { - snprintf(tmp, sizeof(tmp), " different to: %+F", req->other_different); + ir_snprintf(tmp, sizeof(tmp), " different to: %+F", req->other_different); strncat(buf, tmp, len); } -- 2.20.1