diff options
author | Chris Michael <cp.michael@samsung.com> | 2016-07-21 13:18:57 -0400 |
---|---|---|
committer | Chris Michael <cp.michael@samsung.com> | 2016-07-21 13:18:57 -0400 |
commit | 4309050fec8bedd2c638e00d3ae915e9af38c34c (patch) | |
tree | e301192b39248d621905365134d76ca535e9d9f8 /src/lib/elput | |
parent | 89234ce6bcd5fcda3376f77e20ea547cd4d4a012 (diff) |
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>
Diffstat (limited to 'src/lib/elput')
-rw-r--r-- | src/lib/elput/elput_evdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elput/elput_evdev.c b/src/lib/elput/elput_evdev.c index 089bad513c..7a1b1cb0b3 100644 --- a/src/lib/elput/elput_evdev.c +++ b/src/lib/elput/elput_evdev.c | |||
@@ -61,7 +61,7 @@ static int | |||
61 | _keyboard_fd_get(off_t size) | 61 | _keyboard_fd_get(off_t size) |
62 | { | 62 | { |
63 | int fd = 0; | 63 | int fd = 0; |
64 | const char *path; | 64 | char *path; |
65 | char tmp[PATH_MAX]; | 65 | char tmp[PATH_MAX]; |
66 | long flags; | 66 | long flags; |
67 | 67 | ||