elput: Use proper variable type

The 'getenv' function returns char * ... not a const char *, so adjust
variable type to match

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-07-21 13:18:57 -04:00
parent 89234ce6bc
commit 4309050fec
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ static int
_keyboard_fd_get(off_t size)
{
int fd = 0;
const char *path;
char *path;
char tmp[PATH_MAX];
long flags;