diff options
author | dgp <dgp@users.sourceforge.net> | 2020-03-09 16:13:11 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2020-03-09 16:13:11 (GMT) |
commit | 683144e7f0a62bea19fb406f3f3cb377a9eb7d58 (patch) | |
tree | 81f8ce21abe8b096649809b2ed4df23c794f1264 /win/tclAppInit.c | |
parent | 8816b1a873ea5b502c1fcefc3b56875e281f0458 (diff) | |
download | tcl-683144e7f0a62bea19fb406f3f3cb377a9eb7d58.zip tcl-683144e7f0a62bea19fb406f3f3cb377a9eb7d58.tar.gz tcl-683144e7f0a62bea19fb406f3f3cb377a9eb7d58.tar.bz2 |
TCL_UNUSED for win sources.
Diffstat (limited to 'win/tclAppInit.c')
-rw-r--r-- | win/tclAppInit.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/win/tclAppInit.c b/win/tclAppInit.c index 0a47000..105af65 100644 --- a/win/tclAppInit.c +++ b/win/tclAppInit.c @@ -87,11 +87,10 @@ MODULE_SCOPE int TCL_LOCAL_MAIN_HOOK(int *argc, TCHAR ***argv); int main( int argc, /* Number of command-line arguments. */ - char *dummy[]) /* Not used. */ + TCL_UNUSED(char **)) { TCHAR **argv; TCHAR *p; - (void)dummy; #else int _tmain( |