mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 945131 - Fix DMD build by using const char*. r=njn
DONTBUILD because NPOTB
This commit is contained in:
parent
d4cfe0793f
commit
5302a0f06c
@ -715,7 +715,7 @@ public:
|
||||
W(" ??? 0x%x\n", entryPc);
|
||||
} else {
|
||||
// Use "???" for unknown functions.
|
||||
char* entryFunction = entry.mFunction ? entry.mFunction : "???";
|
||||
const char* entryFunction = entry.mFunction ? entry.mFunction : "???";
|
||||
if (entry.mFileName) {
|
||||
// On Windows we can get the filename and line number at runtime.
|
||||
W(" %s (%s:%lu) 0x%x\n",
|
||||
|
Loading…
Reference in New Issue
Block a user