diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2017-09-13 15:17:40 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2017-09-14 17:52:39 -0700 |
commit | 6eee5ee05f7936552ffbb2531db85b3c0b225a3c (patch) | |
tree | 66490416f255ab740f1e58561228152cdaa735aa /src/modules/plasma/plasma.c | |
parent | 26910b99215b6feebace8cd3ddc5d96681c3d1e1 (diff) |
fb: s/fb_fragment_divide_single/fb_fragment_slice_single/
Mechanical cosmetic change
Diffstat (limited to 'src/modules/plasma/plasma.c')
-rw-r--r-- | src/modules/plasma/plasma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/plasma/plasma.c b/src/modules/plasma/plasma.c index b9c5cc4..71c5c13 100644 --- a/src/modules/plasma/plasma.c +++ b/src/modules/plasma/plasma.c @@ -63,7 +63,7 @@ static int plasma_fragmenter(void *context, const fb_fragment_t *fragment, unsig { plasma_context_t *ctxt = context; - return fb_fragment_divide_single(fragment, ctxt->n_cpus, num, res_fragment); + return fb_fragment_slice_single(fragment, ctxt->n_cpus, num, res_fragment); } |