diff options
author | Grazvydas Ignotas <notasas@gmail.com> | 2016-11-20 20:25:47 +0200 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2016-11-22 13:54:31 +0000 |
commit | 1fc32f1cc5046fe76f2d5094fc576e097ea031e7 (patch) | |
tree | 6edc4ee9037c86b246cc1d3da51b4d7c8422013d /tests/kms | |
parent | 37d790f7d449874d0bf199d9ca9871d12b4d599a (diff) |
tests: kms: fix shadowed declaration warning
There is no need to maintain the value in the shadowed variable from
what I can see.
Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Reviewed-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'tests/kms')
-rw-r--r-- | tests/kms/kms-universal-planes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/kms/kms-universal-planes.c b/tests/kms/kms-universal-planes.c index d8e5fc48..89057bb5 100644 --- a/tests/kms/kms-universal-planes.c +++ b/tests/kms/kms-universal-planes.c @@ -212,9 +212,9 @@ int main(int argc, char *argv[]) printf("Planes: %u\n", device->num_planes); for (i = 0; i < device->num_planes; i++) { - struct kms_plane *plane = device->planes[i]; const char *type = NULL; + plane = device->planes[i]; switch (plane->type) { case DRM_PLANE_TYPE_OVERLAY: type = "overlay"; |