diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-05-23 23:53:43 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-06-21 19:29:44 +0200 |
commit | ab5c3e3ff172e7dc295d3022170ee6a3be062a3f (patch) | |
tree | 4ece493a6c88b60bcb12733c6076ea78a8376f38 /src/swap.c | |
parent | fb19a739d528651e6c78e198269ae856192ffc68 (diff) |
english: s/_per_/_by_/
Diffstat (limited to 'src/swap.c')
-rw-r--r-- | src/swap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/swap.c b/src/swap.c index 04df5854ad..14719ad18c 100644 --- a/src/swap.c +++ b/src/swap.c @@ -155,7 +155,7 @@ static int swap_add_mount_links(Swap *s) { assert(s); - LIST_FOREACH(units_per_type, other, s->meta.manager->units_per_type[UNIT_MOUNT]) + LIST_FOREACH(units_by_type, other, s->meta.manager->units_by_type[UNIT_MOUNT]) if ((r = swap_add_one_mount_link(s, (Mount*) other)) < 0) return r; @@ -1100,7 +1100,7 @@ int swap_fd_event(Manager *m, int events) { log_error("Failed to reread /proc/swaps: %s", strerror(-r)); /* Reset flags, just in case, for late calls */ - LIST_FOREACH(units_per_type, meta, m->units_per_type[UNIT_SWAP]) { + LIST_FOREACH(units_by_type, meta, m->units_by_type[UNIT_SWAP]) { Swap *swap = (Swap*) meta; swap->is_active = swap->just_activated = false; @@ -1111,7 +1111,7 @@ int swap_fd_event(Manager *m, int events) { manager_dispatch_load_queue(m); - LIST_FOREACH(units_per_type, meta, m->units_per_type[UNIT_SWAP]) { + LIST_FOREACH(units_by_type, meta, m->units_by_type[UNIT_SWAP]) { Swap *swap = (Swap*) meta; if (!swap->is_active) { |