Eliminate variable-length types in parameters

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2010-01-18 23:37:11 +01:00
parent 96bdd17579
commit 96c713b69d
3 changed files with 11 additions and 9 deletions

View file

@ -822,9 +822,11 @@ grub_openbsd_boot (void)
buf = (grub_uint8_t *) pm;
pa->ba_size = (char *) pm - (char *) pa;
pa->ba_next = (struct grub_openbsd_bootargs *) (buf - buf0 + buf_target);
pa = pa->ba_next;
pa->ba_next = buf - buf0 + buf_target;
pa = (struct grub_openbsd_bootargs *) buf;
pa->ba_type = OPENBSD_BOOTARG_END;
pa->ba_size = 0;
pa->ba_next = 0;
pa++;
buf = (grub_uint8_t *) pa;