mirror of https://github.com/wolfSSL/wolfBoot.git
gpt: fix spelling error
parent
834a712350
commit
1276e152b6
|
@ -24,5 +24,5 @@
|
|||
int disk_open(int drv);
|
||||
int disk_read(int drv, int part, uint64_t off, uint64_t sz, uint8_t *buf);
|
||||
int disk_write(int drv, int part, uint64_t off, uint64_t sz, const uint8_t *buf);
|
||||
int disk_find_partion_by_label(int drv, const char *label);
|
||||
int disk_find_partition_by_label(int drv, const char *label);
|
||||
#endif
|
||||
|
|
|
@ -358,7 +358,7 @@ int disk_write(int drv, int part, uint64_t off, uint64_t sz, const uint8_t *buf)
|
|||
return ret;
|
||||
}
|
||||
|
||||
int disk_find_partion_by_label(int drv, const char *label)
|
||||
int disk_find_partition_by_label(int drv, const char *label)
|
||||
{
|
||||
struct disk_partition *p;
|
||||
int i;
|
||||
|
|
Loading…
Reference in New Issue