diff options
author | Chris Michael <cp.michael@samsung.com> | 2018-02-20 09:40:14 -0500 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2018-02-20 09:40:14 -0500 |
commit | 124c7535bbc6c614385c833e8627ac430120d229 (patch) | |
tree | b8665db0e7d85697afa6b043efafbc0248f3e30f /src/lib/ecore_drm2/ecore_drm2_outputs.c | |
parent | f877f6c09f06a26bedd7b3fac24f8227b32d8e18 (diff) |
ecore-drm2: Fix typo when comparing output relative mode
Signed-off-by: Chris Michael <cp.michael@samsung.com>
Diffstat (limited to 'src/lib/ecore_drm2/ecore_drm2_outputs.c')
-rw-r--r-- | src/lib/ecore_drm2/ecore_drm2_outputs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ecore_drm2/ecore_drm2_outputs.c b/src/lib/ecore_drm2/ecore_drm2_outputs.c index 87c50375be..3bb0ada0ac 100644 --- a/src/lib/ecore_drm2/ecore_drm2_outputs.c +++ b/src/lib/ecore_drm2/ecore_drm2_outputs.c | |||
@@ -1382,7 +1382,7 @@ ecore_drm2_output_cloned_get(Ecore_Drm2_Output *output) | |||
1382 | { | 1382 | { |
1383 | EINA_SAFETY_ON_NULL_RETURN_VAL(output, EINA_FALSE); | 1383 | EINA_SAFETY_ON_NULL_RETURN_VAL(output, EINA_FALSE); |
1384 | return (output->cloned || | 1384 | return (output->cloned || |
1385 | output->relative.mode == ECORE_DRM2_RELATIVE_CLONE); | 1385 | output->relative.mode == ECORE_DRM2_RELATIVE_MODE_CLONE); |
1386 | } | 1386 | } |
1387 | 1387 | ||
1388 | EAPI unsigned int | 1388 | EAPI unsigned int |