diff --git a/src/lib/ecore_fb/ecore_fb_ts.c b/src/lib/ecore_fb/ecore_fb_ts.c index b9880ec63e..f34d41aba6 100644 --- a/src/lib/ecore_fb/ecore_fb_ts.c +++ b/src/lib/ecore_fb/ecore_fb_ts.c @@ -83,12 +83,12 @@ ecore_fb_ts_init(void) { #ifdef HAVE_TSLIB char *tslib_tsdevice = NULL; - if ( #if defined(HAVE_GETUID) && defined(HAVE_GETEUID) - (getuid() == geteuid()) && + if (getuid() == geteuid()) #endif - ((tslib_tsdevice = getenv("TSLIB_TSDEVICE")))) { + if ((tslib_tsdevice = getenv("TSLIB_TSDEVICE")) == NULL) + tslib_tsdevice = "/dev/input/event0"; printf( "ECORE_FB: TSLIB_TSDEVICE = '%s'\n", tslib_tsdevice ); _ecore_fb_tslib_tsdev = ts_open( tslib_tsdevice, 1 ); /* 1 = nonblocking, 0 = blocking */