Private
Public Access
2
0

uart.c: Simple compiler error fixes

Signed-off-by: Nicola Lunghi Emutex <nicola.lunghi@emutex.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Nicola Lunghi Emutex
2017-02-06 16:33:39 +00:00
committed by Brendan Le Foll
parent 6fabccf131
commit 2ea68105f0

View File

@@ -221,7 +221,7 @@ mraa_uart_init_raw(const char* path)
status = MRAA_ERROR_NO_RESOURCES;
goto init_raw_cleanup;
}
strncpy(dev->path, path, strlen(path));
strncpy((char *) dev->path, path, strlen(path));
if (IS_FUNC_DEFINED(dev, uart_init_raw_replace)) {
status = dev->advance_func->uart_init_raw_replace(dev, path);
@@ -271,7 +271,7 @@ init_raw_cleanup:
close(dev->fd);
}
if (dev->path != NULL) {
free(dev->path);
free((void *) dev->path);
}
free(dev);
}
@@ -294,7 +294,7 @@ mraa_uart_stop(mraa_uart_context dev)
close(dev->fd);
}
if (dev->path != NULL) {
free(dev->path);
free((void *) dev->path);
}
free(dev);