Skip to content

Commit

Permalink
Fix testClosureVrL return type. Patch from Bryan Kearney <bkearney@re…
Browse files Browse the repository at this point in the history
…dhat.com>
  • Loading branch information
vp-of-awesome committed Nov 4, 2009
1 parent fb047ca commit 637e095
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libtest/ClosureTest.c
Expand Up @@ -48,7 +48,7 @@ int testClosureVrI(int (*closure)(void))
{
return (*closure)();
}
long long testClosureVrL(long (*closure)(void))
long testClosureVrL(long (*closure)(void))
{
return (*closure)();
}
Expand Down

0 comments on commit 637e095

Please sign in to comment.