Skip to content

Commit

Permalink
* grub-core/kern/mips/arc/init.c (grub_machine_get_bootlocation):
Browse files Browse the repository at this point in the history
Initialise pend to pacify GCC.
  • Loading branch information
cjwatson committed Aug 25, 2014
1 parent c291f47 commit 1de3a48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2014-08-25 Colin Watson <[email protected]>

* grub-core/kern/mips/arc/init.c (grub_machine_get_bootlocation):
Initialise pend to pacify GCC.

2014-08-14 Andrey Borzenkov <[email protected]>

* util/grub-mkconfig.in: Fix typo (gettext_print instead of
Expand Down
2 changes: 1 addition & 1 deletion grub-core/kern/mips/arc/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ grub_machine_get_bootlocation (char **device, char **path)
char *loaddev = boot_location;
char *pptr, *partptr;
char *dname;
grub_disk_addr_t poff = -1, pend;
grub_disk_addr_t poff = -1, pend = -1;
struct get_device_name_ctx ctx;
grub_disk_t parent = 0;
unsigned i;
Expand Down

0 comments on commit 1de3a48

Please sign in to comment.