staging: android: ashmem.c: 'spaces preferred around that -' style issue

fix a CHECK style issue by checkpatch.pl with --strict:
	spaces preferred around that '-'

Signed-off-by: Peng Sun <sironhide0null@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Peng Sun 2015-08-27 15:41:05 +08:00 committed by Greg Kroah-Hartman
parent 9cb693f6f3
commit d2e4f687c4
1 changed files with 2 additions and 1 deletions

View File

@ -618,7 +618,8 @@ static int ashmem_pin(struct ashmem_area *asma, size_t pgstart, size_t pgend)
/* Case #3: We overlap from the rear, so adjust it */
if (range->pgend <= pgend) {
range_shrink(range, range->pgstart, pgstart-1);
range_shrink(range, range->pgstart,
pgstart - 1);
continue;
}