fs_mgr: fix incorrect parameter type

BUG: 117426573
Change-Id: Iffbdd3763dd19aa527bf805918a566477d122cfc
This commit is contained in:
bohu 2018-10-09 06:06:56 -07:00
parent c35c609961
commit 39ed7afe2b

View file

@ -25,7 +25,7 @@
#include <cutils/properties.h>
static int only_one_char(char *buf, int len, char c)
static int only_one_char(uint8_t *buf, int len, uint8_t c)
{
int i, ret;
@ -41,7 +41,7 @@ static int only_one_char(char *buf, int len, char c)
int partition_wiped(char *source)
{
char buf[4096];
uint8_t buf[4096];
int fd, ret;
if ((fd = open(source, O_RDONLY)) < 0) {