mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1223262 - Fix -Wunreachable-code warning in tools/profiler. r=BenWa
tools/profiler/core/platform-linux.cc:363:11: warning: code will never be executed [-Wunreachable-code]
This commit is contained in:
parent
ba0b7175d3
commit
5f6ec4fff6
@ -359,8 +359,9 @@ static void* SignalSender(void* arg) {
|
|||||||
printf_stderr("profiler failed to signal tid=%d\n", threadId);
|
printf_stderr("profiler failed to signal tid=%d\n", threadId);
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
abort();
|
abort();
|
||||||
#endif
|
#else
|
||||||
continue;
|
continue;
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for the signal handler to run before moving on to the next one
|
// Wait for the signal handler to run before moving on to the next one
|
||||||
|
Loading…
Reference in New Issue
Block a user