Skip to content

Commit

Permalink
Fix rebase changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Feb 10, 2025
1 parent 9bca373 commit 7c2ef72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion librz/core/cconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -2393,7 +2393,7 @@ static bool cb_contiguous(void *user, void *data) {
static bool cb_searchalign(void *user, void *data) {
RzCore *core = (RzCore *)user;
RzConfigNode *node = (RzConfigNode *)data;
if (rz_bits_count_ut64(node->i_value) != 1) {
if (rz_bits_count_ones_ut64(node->i_value) != 1) {
RZ_LOG_ERROR("Alignment is only defined for '>0' and 'n^2'.\n");
return false;
}
Expand Down

0 comments on commit 7c2ef72

Please sign in to comment.