Skip to content

Commit

Permalink
Update Rizin to the latest dev
Browse files Browse the repository at this point in the history
  • Loading branch information
XVilka committed Dec 25, 2023
1 parent a7246f9 commit 2930464
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rizin
Submodule rizin updated 231 files
2 changes: 1 addition & 1 deletion src/core/RizinCpp.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ static inline auto fromOwned(RZ_OWN RzList *data) -> UniquePtrCP<decltype(data),
// deprecated, prefer using CutterPVector and CutterRzList instead
#define CutterRzListForeach(list, it, type, x) \
if (list) \
for (it = list->head; it && ((x = static_cast<type *>(it->data))); it = it->n)
for (it = list->head; it && ((x = static_cast<type *>(it->elem))); it = it->next)

#define CutterRzVectorForeach(vec, it, type) \
if ((vec) && (vec)->a) \
Expand Down

0 comments on commit 2930464

Please sign in to comment.