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

This commit is contained in:
Elliott Hughes 2015-02-04 18:20:33 +00:00 committed by Gerrit Code Review
commit 798219e9e9
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)