Skip to content

Commit

Permalink
more indent
Browse files Browse the repository at this point in the history
  • Loading branch information
iMilnb committed May 2, 2013
1 parent 9940e23 commit 6b6f6d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions actions.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,8 @@ pkgin_install(char **opkgargs, uint8_t do_inst)

SLIST_FOREACH(premove, removehead, next) {
if (premove->computed == TOUPGRADE) {
toupgrade = action_list(toupgrade, premove->depend);
toupgrade = action_list(toupgrade,
premove->depend);
#ifdef DEBUG
printf("package: %s - level: %d\n",
premove->depend, premove->level);
Expand All @@ -467,7 +468,8 @@ pkgin_install(char **opkgargs, uint8_t do_inst)
if (removenum > 0) {
SLIST_FOREACH(premove, removehead, next) {
if (premove->computed == TOREMOVE) {
toremove = action_list(toremove, premove->depend);
toremove = action_list(toremove,
premove->depend);
#ifdef DEBUG
printf("package: %s - level: %d\n",
premove->depend, premove->level);
Expand Down

0 comments on commit 6b6f6d2

Please sign in to comment.