From ae2cdda73621bfd3fc5a73f60a49514d00bbffa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Mon, 28 Jul 2014 14:50:15 +0200 Subject: [PATCH] Fix type mismatch warnings --- src/system/libroot/posix/sys/uname.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/system/libroot/posix/sys/uname.c b/src/system/libroot/posix/sys/uname.c index bb018a3265..e7f02b68d8 100644 --- a/src/system/libroot/posix/sys/uname.c +++ b/src/system/libroot/posix/sys/uname.c @@ -25,7 +25,7 @@ uname(struct utsname *info) system_info systemInfo; const char *platform; const char *haikuRevision; - uint32_t count = 1; + uint32 count = 1; status_t error; if (!info) {