* commit 'fd6ca57f24cbfd8a8074ee6f1c22dd973f1b172f': Fix several compiler warnings.
This commit is contained in:
commit
209d67d448
@ -57,7 +57,7 @@ class ScopedSignalBlocker {
|
||||
static FILE* __tmpfile_dir(const char* tmp_dir) {
|
||||
char buf[PATH_MAX];
|
||||
int path_length = snprintf(buf, sizeof(buf), "%s/tmp.XXXXXXXXXX", tmp_dir);
|
||||
if (path_length >= sizeof(buf)) {
|
||||
if (path_length >= static_cast<int>(sizeof(buf))) {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -17,6 +17,12 @@
|
||||
#ifndef _BIONIC_NETBSD_EXTERN_H_included
|
||||
#define _BIONIC_NETBSD_EXTERN_H_included
|
||||
|
||||
// Placeholder.
|
||||
#include <sys/cdefs.h>
|
||||
|
||||
__BEGIN_DECLS
|
||||
|
||||
const char* __strsignal(int, char*, size_t);
|
||||
|
||||
__END_DECLS
|
||||
|
||||
#endif
|
||||
|
@ -34,7 +34,7 @@ typedef enum {
|
||||
TYPE_APP
|
||||
} uid_type_t;
|
||||
|
||||
static void check_getpwnam(const char* username, int uid, uid_type_t uid_type) {
|
||||
static void check_getpwnam(const char* username, uid_t uid, uid_type_t uid_type) {
|
||||
errno = 0;
|
||||
passwd* pwd = getpwuid(uid);
|
||||
ASSERT_TRUE(pwd != NULL);
|
||||
|
Loading…
Reference in New Issue
Block a user