Skip to content

Commit

Permalink
config_libconfig: fix a gcc complaint
Browse files Browse the repository at this point in the history
Signed-off-by: Yuxuan Shui <[email protected]>
  • Loading branch information
yshui committed May 25, 2024
1 parent e37906b commit 8655f38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config_libconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ parse_animation_one(struct win_script *animations, config_setting_t *setting) {
config_setting_source_line(suppressions_setting));
return NULL;
}
suppressions |= 1 << suppression;
suppressions |= 1U << suppression;
}
}
config_setting_remove(setting, "suppressions");
Expand Down

0 comments on commit 8655f38

Please sign in to comment.