alfred: vis: Add missing return for vis_server

Message ID 20161101121725.31181-1-sven@narfation.org (mailing list archive)
State Accepted, archived
Commit a2f7436a7da77c541d5f7cfb02711e0c50fe7647
Delegated to: Simon Wunderlich
Headers

Commit Message

Sven Eckelmann Nov. 1, 2016, 12:17 p.m. UTC
  Signed-off-by: Sven Eckelmann <sven@narfation.org>
---
 vis/vis.c | 2 ++
 1 file changed, 2 insertions(+)
  

Comments

Simon Wunderlich Nov. 1, 2016, 3 p.m. UTC | #1
On Tuesday, November 1, 2016 1:17:25 PM CET Sven Eckelmann wrote:
> Signed-off-by: Sven Eckelmann <sven@narfation.org>

Applied in a2f7436.

Thanks,
   Simon
  

Patch

diff --git a/vis/vis.c b/vis/vis.c
index 51d7f5c..22e052b 100644
--- a/vis/vis.c
+++ b/vis/vis.c
@@ -1139,6 +1139,8 @@  static int vis_server(struct globals *globals)
 		vis_update_data(globals);
 		sleep(UPDATE_INTERVAL);
 	}
+
+	return 0;
 }
 
 int main(int argc, char *argv[])