Evil: remove fall through warning

Summary: gcc and clang support the usage of "fall through" comment to suppress this warning

Test Plan: compilation

Reviewers: raster, zmike, cedric

Reviewed By: zmike

Subscribers: #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8904
This commit is contained in:
Vincent Torri 2019-05-16 13:49:39 -04:00 committed by Mike Blumenkrantz
parent ce9cad3a3b
commit 8b21255bba
1 changed files with 2 additions and 0 deletions

View File

@ -100,6 +100,8 @@ BOOL WINAPI DllMain(HINSTANCE inst, DWORD reason, LPVOID reserved)
_evil_tls_index = TlsAlloc();
if (_evil_tls_index == TLS_OUT_OF_INDEXES)
return FALSE;
/* No break: Initialize the index for first thread. */
/* fall through */
case DLL_THREAD_ATTACH:
data = (LPVOID)LocalAlloc(LPTR, 4096);
if (!data)