From 375cd3bbaa3596b0976edac0d452f2ec065acdea Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Thu, 18 Apr 2019 15:19:19 +0000 Subject: [PATCH] Minor tweak to the debug Make it clear we're loading from UFS. --- stand/efi/boot1/ufs_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/efi/boot1/ufs_module.c b/stand/efi/boot1/ufs_module.c index af50d921745..1611be3e450 100644 --- a/stand/efi/boot1/ufs_module.c +++ b/stand/efi/boot1/ufs_module.c @@ -148,7 +148,7 @@ load(const char *filepath, dev_info_t *dev, void **bufp, size_t *bufsize) #ifdef EFI_DEBUG { CHAR16 *text = efi_devpath_name(dev->devpath); - DPRINTF("Loading '%s' from %S\n", filepath, text); + DPRINTF("UFS Loading '%s' from %S\n", filepath, text); efi_free_devpath_name(text); } #endif