Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 39ed7afe authored by bohu's avatar bohu
Browse files

fs_mgr: fix incorrect parameter type

BUG: 117426573
Change-Id: Iffbdd3763dd19aa527bf805918a566477d122cfc
parent c35c6099
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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) {