Skip to content

Commit

Permalink
gpt: fix spelling error
Browse files Browse the repository at this point in the history
  • Loading branch information
rizlik committed Dec 19, 2024
1 parent f3d2150 commit edeee1b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/x86/gpt.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion src/x86/gpt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit edeee1b

Please sign in to comment.