summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Michael <cp.michael@samsung.com>2019-06-10 08:41:12 -0400
committerChristopher Michael <cp.michael@samsung.com>2019-06-10 08:41:24 -0400
commitb8fb6b70f77a672a8371e2d53a37e0f96dcce535 (patch)
tree730d15926052c48e05bc21b9bee7d43a3c8966d7
parentdc29ed49142aefc32cdc7dda7d79f2afd8193562 (diff)
downloadenlightenment-b8fb6b70f77a672a8371e2d53a37e0f96dcce535.tar.gz
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
-rw-r--r--src/modules/wl_wl/e_mod_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/wl_wl/e_mod_main.c b/src/modules/wl_wl/e_mod_main.c
index 16a0ef20e9..54be20d313 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;
}
}