Skip to content

Commit

Permalink
Minor fixes in zigns
Browse files Browse the repository at this point in the history
  • Loading branch information
jroimartin committed Apr 4, 2017
1 parent 0427524 commit 86f2793
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libr/anal/sign.c
Expand Up @@ -940,7 +940,7 @@ R_API bool r_sign_match_offset(RAnal *a, RAnalFunction *fcn, RSignOffsetMatchCal
struct ctxFcnMatchCB ctx = { a, fcn, cb, user };

if (!a || !fcn || !cb) {
return 0;
return false;
}

return r_sign_foreach (a, offsetMatchCB, &ctx);
Expand Down Expand Up @@ -985,7 +985,7 @@ R_API bool r_sign_match_refs(RAnal *a, RAnalFunction *fcn, RSignRefsMatchCallbac
struct ctxFcnMatchCB ctx = { a, fcn, cb, user };

if (!a || !fcn || !cb) {
return 0;
return false;
}

return r_sign_foreach (a, refsMatchCB, &ctx);
Expand Down

0 comments on commit 86f2793

Please sign in to comment.