From eb0b93b8e28f8b885f60d53f011357324a3a4d94 Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Tue, 6 Jun 2017 20:35:43 +0100 Subject: check_stdin_for_paths shouldn't be public --- src/imv.c | 4 ++-- src/imv.h | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/imv.c b/src/imv.c index 0e37e20..a0b23d7 100644 --- a/src/imv.c +++ b/src/imv.c @@ -296,7 +296,7 @@ bool imv_parse_args(struct imv *imv, int argc, char **argv) return true; } -void imv_check_stdin_for_paths(struct imv *imv) +static void check_stdin_for_paths(struct imv *imv) { /* check stdin to see if we've been given any new paths to load */ if(poll(&imv->stdin_fd, 1, 10) != 1 || imv->stdin_fd.revents & (POLLERR|POLLNVAL)) { @@ -473,7 +473,7 @@ bool imv_run(struct imv *imv) if(imv->paths_from_stdin) { /* check stdin for any more paths */ - imv_check_stdin_for_paths(imv); + check_stdin_for_paths(imv); } else { /* sleep a little bit so we don't waste CPU time */ SDL_Delay(10); diff --git a/src/imv.h b/src/imv.h index 0538ca7..0945fe2 100644 --- a/src/imv.h +++ b/src/imv.h @@ -27,8 +27,6 @@ void imv_free(struct imv *imv); bool imv_parse_args(struct imv *imv, int argc, char **argv); -void imv_check_stdin_for_paths(struct imv *imv); - void imv_add_path(struct imv *imv, const char *path); bool imv_run(struct imv *imv); -- cgit v1.2.3