diff options
author | Tom Rini <trini@konsulko.com> | 2021-06-23 08:45:09 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-06-23 08:45:09 -0400 |
commit | 6fc0a2f76bc285dc4bc80f55452311385e6c3d57 (patch) | |
tree | aa741bbc7cb8e0208b7e21c870fdc39f9ca99ae6 /disk/part_dos.c | |
parent | 1ce892cb1ce970d8ee6ffcecc22351c84e67fca4 (diff) | |
parent | b2710faf82998d7be9e4eef554063a5e27e88ec9 (diff) |
Merge branch '2021-06-22-assorted-fixes'
- Assorted minor bugfixes
Diffstat (limited to 'disk/part_dos.c')
-rw-r--r-- | disk/part_dos.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part_dos.c b/disk/part_dos.c index 60addc6e00d..9e29aa6583a 100644 --- a/disk/part_dos.c +++ b/disk/part_dos.c @@ -424,7 +424,7 @@ int write_mbr_partitions(struct blk_desc *dev, } /* Update the partition table entries*/ - part_init(dev_desc); + part_init(dev); return 0; } |