Date: Wed, 27 Feb 2013 05:02:41 +0000 (UTC) From: Benno Rice <benno@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r247381 - projects/uefi/sys/boot/efi/libefi Message-ID: <201302270502.r1R52foP011837@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: benno Date: Wed Feb 27 05:02:40 2013 New Revision: 247381 URL: http://svnweb.freebsd.org/changeset/base/247381 Log: Remove a scatalogical debug printf that crept in. Modified: projects/uefi/sys/boot/efi/libefi/efipart.c Modified: projects/uefi/sys/boot/efi/libefi/efipart.c ============================================================================== --- projects/uefi/sys/boot/efi/libefi/efipart.c Wed Feb 27 05:01:08 2013 (r247380) +++ projects/uefi/sys/boot/efi/libefi/efipart.c Wed Feb 27 05:02:40 2013 (r247381) @@ -119,10 +119,10 @@ efipart_init(void) node->SubType = END_ENTIRE_DEVICE_PATH_SUBTYPE; status = BS->LocateDevicePath(&blkio_guid, &devpath, &handle); + if (EFI_ERROR(status)) + continue; hout[nout] = handle; aliases[nout] = hin[n]; - if (EFI_ERROR(status)) - printf("shit\n"); } else hout[nout] = hin[n]; nout++;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302270502.r1R52foP011837>