From 88e97d9a418e8b830ba1d3259aef351b7fb53e6d Mon Sep 17 00:00:00 2001 From: Austin Seipp Date: Thu, 20 Jun 2013 23:56:07 -0500 Subject: [PATCH] Initialize ptr to NULL to silence Clang warning. Signed-off-by: Austin Seipp --- rts/Adjustor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rts/Adjustor.c b/rts/Adjustor.c index 9f879de72917..789bd691c4bb 100644 --- a/rts/Adjustor.c +++ b/rts/Adjustor.c @@ -335,7 +335,7 @@ createAdjustor(int cconv, StgStablePtr hptr, ) { void *adjustor = NULL; - void *code; + void *code = NULL; switch (cconv) {