Skip to content

Commit

Permalink
src/utils.c: oops... fix the if keyword
Browse files Browse the repository at this point in the history
Signed-off-by: rilysh <[email protected]>
  • Loading branch information
rilysh authored and bapt committed May 29, 2024
1 parent cd4d100 commit 08e3a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,7 @@ print_jobs_summary(struct pkg_jobs *jobs, const char *msg, ...)
} else if (sum.reinstall > 0) {
printf("Number of packages to be reinstalled: %d\n",
sum.reinstall);
} else xif (sum.downgrade > 0) {
} else if (sum.downgrade > 0) {
printf("Number of packages to be downgraded: %d\n",
sum.downgrade);
} else if (sum.fetch > 0) {
Expand Down

0 comments on commit 08e3a76

Please sign in to comment.