From 4d884dba3dbf2aea45cb4fb6bdc8115a058aeb3c Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Thu, 28 Aug 2008 18:07:40 +0000 Subject: [PATCH] Fix typos in fehler139. [r21556] --- ir/be/test/fehler139.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ir/be/test/fehler139.c b/ir/be/test/fehler139.c index b451ff88f..d644aef04 100644 --- a/ir/be/test/fehler139.c +++ b/ir/be/test/fehler139.c @@ -6,7 +6,8 @@ long long test(long long *i, int *p) { } int main() { - long x = 0xFFFFFFFF; - printf("%llx\n", test(&x, 5)); + long long x = 0xFFFFFFFF; + int i = 5; + printf("%llx\n", test(&x, &i)); return 0; } -- 2.20.1