diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-14 21:40:50 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2023-04-14 21:40:50 (GMT) |
| commit | f82e6059dce38a482b9db9366d2edf71cb5ea917 (patch) | |
| tree | 4c0b8a7df6137b81a3f065e3c93f7c39aaa3bec1 /unix/tclAppInit.c | |
| parent | 3ecc8df3dcc710721c37de18907f638d5d4877ee (diff) | |
| download | tcl-f82e6059dce38a482b9db9366d2edf71cb5ea917.zip tcl-f82e6059dce38a482b9db9366d2edf71cb5ea917.tar.gz tcl-f82e6059dce38a482b9db9366d2edf71cb5ea917.tar.bz2 | |
int -> Tcl_Size where appropriate in tcl.decls (reducing the diff against Tcl 9.0)
Diffstat (limited to 'unix/tclAppInit.c')
| -rw-r--r-- | unix/tclAppInit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclAppInit.c b/unix/tclAppInit.c index 05d25de..b203487 100644 --- a/unix/tclAppInit.c +++ b/unix/tclAppInit.c @@ -91,7 +91,7 @@ main( TclZipfs_AppHook(&argc, &argv); #endif - Tcl_Main((size_t)argc, argv, TCL_LOCAL_APPINIT); + Tcl_Main(argc, argv, TCL_LOCAL_APPINIT); return 0; /* Needed only to prevent compiler warning. */ } |
