From e176cda16afa82cead657db912ca225a61cc54b4 Mon Sep 17 00:00:00 2001 From: Peter Veenstra Date: Sun, 11 Jan 2004 16:48:32 +0000 Subject: [PATCH] changed LOG_DOS into an existing errortype Imported-from: https://svn.code.sf.net/p/dosbox/code-0/dosbox/trunk@1570 --- src/dos/drive_local.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dos/drive_local.cpp b/src/dos/drive_local.cpp index bf356a94..9cec7b8b 100644 --- a/src/dos/drive_local.cpp +++ b/src/dos/drive_local.cpp @@ -16,7 +16,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -/* $Id: drive_local.cpp,v 1.43 2004-01-11 14:00:13 qbix79 Exp $ */ +/* $Id: drive_local.cpp,v 1.44 2004-01-11 16:48:32 qbix79 Exp $ */ #include #include @@ -143,7 +143,7 @@ bool localDrive::FindFirst(char * _dir,DOS_DTA & dta) { if ((sAttr & DOS_ATTR_VOLUME) && (*_dir==0)) { // Get Volume Label (DOS_ATTR_VOLUME) and only in basedir if ( strcmp(dirCache.GetLabel(), "") == 0 ) { - LOG(LOG_DOS,LOG_ERROR)("DRIVELABEL REQUESTED: none present, returned NOLABEL"); + LOG(LOG_DOSMISC,LOG_ERROR)("DRIVELABEL REQUESTED: none present, returned NOLABEL"); dta.SetResult("NOLABEL",0,0,0,DOS_ATTR_VOLUME); return true; }