diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-02-18 16:31:26 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2022-02-18 16:31:26 (GMT) |
commit | ff710528dbb61e071fac856e1923f8a59c689a2a (patch) | |
tree | f35cf89ea7734de0aa0ee4007a340c6e83016925 /win | |
parent | 8fd0500bc8b2821f46d079ebc6b19bb39a25152e (diff) | |
download | tcl-ff710528dbb61e071fac856e1923f8a59c689a2a.zip tcl-ff710528dbb61e071fac856e1923f8a59c689a2a.tar.gz tcl-ff710528dbb61e071fac856e1923f8a59c689a2a.tar.bz2 |
Eliminate aarch64-w64-mingw32-clang warning
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWin32Dll.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/tclWin32Dll.c b/win/tclWin32Dll.c index 8620a08..9e83b46 100644 --- a/win/tclWin32Dll.c +++ b/win/tclWin32Dll.c @@ -90,7 +90,7 @@ BOOL APIENTRY DllEntryPoint( HINSTANCE hInst, /* Library instance handle. */ DWORD reason, /* Reason this function is being called. */ - LPVOID reserved) /* Not used. */ + LPVOID reserved) { return DllMain(hInst, reason, reserved); } @@ -837,6 +837,8 @@ TclWinCPUID( # endif #else + (void)index; + (void)regsPtr; /* * Don't know how to do assembly code for this compiler and/or * architecture. |