Remove unused Cleanup() call

It was used to clean up shared memory.  We don't construct that anymore,
so remove the useless call.

Change-Id: I8087cef2afce184f66721a9995a63053fb278ec7
diff --git a/y2017/joystick_reader.cc b/y2017/joystick_reader.cc
index c7f0666..a0c20d1 100644
--- a/y2017/joystick_reader.cc
+++ b/y2017/joystick_reader.cc
@@ -331,5 +331,5 @@
 
   event_loop.Run();
 
-  ::aos::Cleanup();
+  return 0;
 }