mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-27 19:53:42 +00:00
Fix stupid wrong-stride bug.
Change-Id: Ic07d7409511adf1b30a9206cef0aa5d18a837897 BUG=none TEST=none Review URL: http://codereview.chromium.org/3405024
This commit is contained in:
@@ -177,7 +177,7 @@ int main(int argc, char *argv[]) {
|
|||||||
retval = dump_fmap(s);
|
retval = dump_fmap(s);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
s++;
|
s += FMAP_SEARCH_STRIDE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (0 != munmap(base_of_rom, sb.st_size)) {
|
if (0 != munmap(base_of_rom, sb.st_size)) {
|
||||||
|
|||||||
Reference in New Issue
Block a user