Change an ERR to a WARN.

This commit is contained in:
Mike Hearn 2005-02-09 22:21:58 +00:00 committed by Alexandre Julliard
parent 87f27ffe08
commit 7acd363973

View file

@ -1993,7 +1993,7 @@ static BOOL pdb_process_internal(const struct process* pcs,
((hMap = CreateFileMappingA(hFile, NULL, PAGE_READONLY, 0, 0, NULL)) == NULL) ||
((image = MapViewOfFile(hMap, FILE_MAP_READ, 0, 0, 0)) == NULL))
{
ERR("-Unable to peruse .PDB file %s\n", pdb_lookup->filename);
WARN("Unable to open .PDB file: %s\n", pdb_lookup->filename);
goto leave;
}
pdb_init(pdb_lookup, image);