diff options
Diffstat (limited to 'tests/test_output.c')
-rw-r--r-- | tests/test_output.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_output.c b/tests/test_output.c index ff523cf..2c5ce86 100644 --- a/tests/test_output.c +++ b/tests/test_output.c @@ -218,9 +218,9 @@ int main(int argc, char **argv) ret = uterm_video_new(&video, eloop, node, mode); if (ret) { if (mode == UTERM_VIDEO_DRM) { - log_notice("cannot create drm device; trying dumb drm mode"); + log_notice("cannot create drm device; trying drm2d mode"); ret = uterm_video_new(&video, eloop, node, - UTERM_VIDEO_DUMB); + UTERM_VIDEO_DRM2D); if (ret) goto err_exit; } else { |