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

Commit e49f9c92 authored by Doug Kwan's avatar Doug Kwan Committed by The Android Open Source Project
Browse files

Automated import from //branches/master/...@142981,142981

parent 161b03c7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -393,7 +393,7 @@ mkdosfs_main(int argc, char *argv[])
        bpb.bsec = length / bpb.bps;
        bpb.spt = bpb.bsec;
        // use FAT32 for 2 gig or greater 
        if (length >= 2 *1024 *1024 *1024) {
        if (length >= 2LL *1024 *1024 *1024) {
            fat = 32;
        } else {
            fat = 16;
+1 −0
Original line number Diff line number Diff line
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <fcntl.h>
#include <errno.h>
+1 −1
Original line number Diff line number Diff line
@@ -250,7 +250,7 @@ static int mmc_bootstrap_mmcblk_partition(char *devpath)
    char filename[255];
    char *uevent_buffer;
    ssize_t sz;
    char *uevent_params[4];
    char *uevent_params[5];
    char tmp[255];
    FILE *fp;
    char line[255];