commit | 2145779c871d4a9f632a8afbfc2adc5bea185a45 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Wed Feb 04 10:19:50 2015 -0800 |
committer | Elliott Hughes <enh@google.com> | Wed Feb 04 10:19:50 2015 -0800 |
tree | 6dd58e92388006311eea90cbc53fea2dd8ee9878 | |
parent | e939e70401c256df18ee614d69c2fbed41e0ad43 [diff] [blame] |
Fix clang "ueventd.cpp:111:1: error: no return statement in function returning non-void". Change-Id: I69c9e5534975bffa0fbf98ca4af50400f6b94aa0
diff --git a/init/ueventd.cpp b/init/ueventd.cpp index 833e4fd..86621cd 100644 --- a/init/ueventd.cpp +++ b/init/ueventd.cpp
@@ -108,6 +108,8 @@ if (ufd.revents & POLLIN) handle_device_fd(); } + + return 0; } static int get_android_id(const char *id)