1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-25 11:37:56 +00:00

Be nice, don't use the f-word.

This commit is contained in:
Edward Tomasz Napierala 2009-11-25 16:36:07 +00:00
parent 2e7ecbfbc8
commit 27565a4094
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=199806
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ elf32_exec(struct preloaded_file *fp)
int boothowto, err, bootdev;
if ((md = file_findmetadata(fp, MODINFOMD_ELFHDR)) == NULL)
return(EFTYPE); /* XXX actually EFUCKUP */
return(EFTYPE);
ehdr = (Elf_Ehdr *)&(md->md_data);
err = bi_load32(fp->f_args, &boothowto, &bootdev, &bootinfop, &modulep, &kernend);

View File

@ -78,7 +78,7 @@ elf64_exec(struct preloaded_file *fp)
int i;
if ((md = file_findmetadata(fp, MODINFOMD_ELFHDR)) == NULL)
return(EFTYPE); /* XXX actually EFUCKUP */
return(EFTYPE);
ehdr = (Elf_Ehdr *)&(md->md_data);
err = bi_load64(fp->f_args, &modulep, &kernend);