From b8fb6b70f77a672a8371e2d53a37e0f96dcce535 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Mon, 10 Jun 2019 08:41:12 -0400 Subject: [PATCH] wl_wl: Fix missing new line at end of fprintf Summary: Original patch from ApBBB (Apostolos B.) slightly modified by me to fix the commit message Test Plan: Compile> run E on wayland > log out >look at the command line. Reviewers: devilhorns Reviewed By: devilhorns Subscribers: ManMower Tags: #enlightenment-git, #wayland Differential Revision: https://phab.enlightenment.org/D9069 --- src/modules/wl_wl/e_mod_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/wl_wl/e_mod_main.c b/src/modules/wl_wl/e_mod_main.c index 16a0ef20e..54be20d31 100644 --- a/src/modules/wl_wl/e_mod_main.c +++ b/src/modules/wl_wl/e_mod_main.c @@ -56,7 +56,7 @@ e_modapi_init(E_Module *m) } else { - fprintf(stderr, "Could not create wayland canvas"); + fprintf(stderr, "Could not create wayland canvas\n"); return NULL; } }