mirror of
				https://github.com/gnif/LookingGlass.git
				synced 2025-10-31 12:42:02 +00:00 
			
		
		
		
	[common] host: fix compliation on windows
This commit is contained in:
		| @@ -128,8 +128,9 @@ static LONG CALLBACK exception_filter(EXCEPTION_POINTERS * exc) | ||||
|         DWORD lineDisp; | ||||
|  | ||||
|         if (SymGetLineFromAddr64(hProcess, frame.AddrPC.Offset, &lineDisp, &line)) | ||||
|           DEBUG_ERROR("[trace]: %2d: %s:%s+0x%" PRIx64 " (%s:%ld+0x%lx)", i, moduleName, symbol->Name, disp, | ||||
|             line.FileName, line.LineNumber, lineDisp); | ||||
|           DEBUG_ERROR("[trace]: %2d: %s:%s+0x%" PRIx64 " (%s:%" PRIx64 "+0x%" PRIx64 ")", | ||||
|               i, moduleName, symbol->Name, disp, line.FileName, | ||||
|               (uint64_t)line.LineNumber, (uint64_t)lineDisp); | ||||
|         else | ||||
|           DEBUG_ERROR("[trace]: %2d: %s:%s+0x%" PRIx64, i, moduleName, symbol->Name, disp); | ||||
|       } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Geoffrey McRae
					Geoffrey McRae