summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Van Doorn <vandoorn.nick@gmail.com>2017-12-12 19:00:13 -0800
committerNick Van Doorn <vandoorn.nick@gmail.com>2017-12-12 19:00:13 -0800
commitfe707ec9d280dec6282093f7ed5d313ef9be1010 (patch)
tree601277bdbb3b54cc5711e71cb66fecced0774dcb
parent977d9d2b812521a3d97aa0cadc911715d8077d1f (diff)
Remove un-needed return
-rw-r--r--camera.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/camera.c b/camera.c
index ccd4b12..0368fdf 100644
--- a/camera.c
+++ b/camera.c
@@ -12,7 +12,7 @@ le_result_t fd_openCam (int *fd) {
}
void fd_closeCam (int fd) {
- return le_tty_Close(fd);
+ le_tty_Close(fd);
}
le_result_t fd_resetCamTty (int *fd) {