devilhorns pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=21fe5e6eab29fdef7d25debe8bbbdea4a2856b1f

commit 21fe5e6eab29fdef7d25debe8bbbdea4a2856b1f
Author: Chris Michael <[email protected]>
Date:   Mon Sep 22 15:44:50 2014 -0400

    ecore-drm: Fix some error/warn message formatting
    
    NB: Nothing functional here, just alignment of error messages in output.
    
    Signed-off-by: Chris Michael <[email protected]>
---
 src/lib/ecore_drm/ecore_drm_evdev.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/lib/ecore_drm/ecore_drm_evdev.c 
b/src/lib/ecore_drm/ecore_drm_evdev.c
index 7ecc175..e78ef17 100644
--- a/src/lib/ecore_drm/ecore_drm_evdev.c
+++ b/src/lib/ecore_drm/ecore_drm_evdev.c
@@ -70,7 +70,7 @@ _device_configure(Ecore_Drm_Evdev *edev)
    if ((edev->caps & (EVDEV_MOTION_ABS | EVDEV_MOTION_REL)) && 
        (edev->caps & EVDEV_BUTTON))
      {
-        DBG("Input device %s is a pointer", edev->name);
+        DBG("\tInput device %s is a pointer", edev->name);
         edev->seat_caps |= EVDEV_SEAT_POINTER;
 
         /* FIXME: make this configurable */
@@ -81,7 +81,7 @@ _device_configure(Ecore_Drm_Evdev *edev)
 
    if (edev->caps & EVDEV_KEYBOARD)
      {
-        DBG("Input device %s is a keyboard", edev->name);
+        DBG("\tInput device %s is a keyboard", edev->name);
         edev->seat_caps |= EVDEV_SEAT_KEYBOARD;
         _device_keyboard_setup(edev);
         ret = EINA_TRUE;
@@ -89,7 +89,7 @@ _device_configure(Ecore_Drm_Evdev *edev)
 
    if (edev->caps & EVDEV_TOUCH)
      {
-        DBG("Input device %s is a touchpad", edev->name);
+        DBG("\tInput device %s is a touchpad", edev->name);
         edev->seat_caps |= EVDEV_SEAT_TOUCH;
         ret = EINA_TRUE;
      }
@@ -786,7 +786,7 @@ _ecore_drm_evdev_device_create(Ecore_Drm_Seat *seat, const 
char *path, int fd)
 
    if (!_device_configure(edev))
      {
-        ERR("Could not configure input device: %s", name);
+        ERR("\tCould not configure input device: %s", name);
         _ecore_drm_evdev_device_destroy(edev);
         return NULL;
      }
@@ -798,7 +798,7 @@ _ecore_drm_evdev_device_create(Ecore_Drm_Seat *seat, const 
char *path, int fd)
                                _cb_device_data, edev, NULL, NULL);
    if (!edev->hdlr)
      {
-        ERR("Could not create fd handler");
+        ERR("\tCould not create fd handler");
         _ecore_drm_evdev_device_destroy(edev);
         return NULL;
      }

-- 


Reply via email to