Private
Public Access
2
0

uart: make mraa_uart_get_dev_path return const char*

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2015-06-01 10:54:40 +01:00
parent 347fd449f9
commit 236a8e9586
3 changed files with 3 additions and 3 deletions

View File

@@ -91,7 +91,7 @@ struct _aio {
struct _uart {
/*@{*/
int index; /**< the uart index, as known to the os. */
char* path; /**< the uart device path. */
const char* path; /**< the uart device path. */
int fd; /**< file descriptor for device. */
/*@}*/
};