Skip to content

Commit

Permalink
Initialize ptr to NULL to silence Clang warning.
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Seipp <aseipp@pobox.com>
  • Loading branch information
thoughtpolice committed Jun 21, 2013
1 parent e4fc6fd commit 88e97d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rts/Adjustor.c
Expand Up @@ -335,7 +335,7 @@ createAdjustor(int cconv, StgStablePtr hptr,
)
{
void *adjustor = NULL;
void *code;
void *code = NULL;

switch (cconv)
{
Expand Down

0 comments on commit 88e97d9

Please sign in to comment.