Fix clang "ueventd.cpp:111:1: error: no return statement in function returning non-void".

Change-Id: I69c9e5534975bffa0fbf98ca4af50400f6b94aa0
This commit is contained in:
Elliott Hughes 2015-02-04 10:19:50 -08:00
parent e939e70401
commit 2145779c87
1 changed files with 2 additions and 0 deletions

View File

@ -108,6 +108,8 @@ int ueventd_main(int argc, char **argv)
if (ufd.revents & POLLIN)
handle_device_fd();
}
return 0;
}
static int get_android_id(const char *id)