summaryrefslogtreecommitdiffstats
path: root/unix
diff options
context:
space:
mode:
authorEmiliano Gavilán <Emiliano Gavilán>2024-06-04 00:56:08 (GMT)
committerEmiliano Gavilán <Emiliano Gavilán>2024-06-04 00:56:08 (GMT)
commit39e73e4e9f4e69e344b6de9f5a83f6d84ee1e317 (patch)
tree1efc73764fe22e0f4a53b4085301cab36ee35f1b /unix
parentaa6b2d57d5bf4b63326668f35e39b205a011fe2e (diff)
downloadtk-39e73e4e9f4e69e344b6de9f5a83f6d84ee1e317.zip
tk-39e73e4e9f4e69e344b6de9f5a83f6d84ee1e317.tar.gz
tk-39e73e4e9f4e69e344b6de9f5a83f6d84ee1e317.tar.bz2
Clientdata->void* and a round more of int->Tcl_Size in functions with Tcl_ArgvGenFuncProc signature.
Diffstat (limited to 'unix')
-rw-r--r--unix/tkUnixPrint.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/unix/tkUnixPrint.c b/unix/tkUnixPrint.c
index 366016b..3534533 100644
--- a/unix/tkUnixPrint.c
+++ b/unix/tkUnixPrint.c
@@ -413,9 +413,9 @@ cleanup:
static Tcl_Size
ParseEnumOptions(
- ClientData clientData,
+ void *clientData,
Tcl_Interp *interp,
- TCL_UNUSED(int),
+ TCL_UNUSED(Tcl_Size),
Tcl_Obj *const *objv,
void *dstPtr)
{
@@ -434,9 +434,9 @@ ParseEnumOptions(
static Tcl_Size
ParseOptions(
- TCL_UNUSED(ClientData),
+ TCL_UNUSED(void *),
Tcl_Interp *interp,
- TCL_UNUSED(int),
+ TCL_UNUSED(Tcl_Size),
Tcl_Obj *const *objv,
void *dstPtr)
{
@@ -456,9 +456,9 @@ ParseOptions(
static Tcl_Size
ParseMargins(
- TCL_UNUSED(ClientData),
+ TCL_UNUSED(void *),
Tcl_Interp *interp,
- TCL_UNUSED(int),
+ TCL_UNUSED(Tcl_Size),
Tcl_Obj *const *objv,
void *dstPtr)
{
@@ -484,9 +484,9 @@ ParseMargins(
static Tcl_Size
ParseNup(
- TCL_UNUSED(ClientData),
+ TCL_UNUSED(void *),
Tcl_Interp *interp,
- TCL_UNUSED(int),
+ TCL_UNUSED(Tcl_Size),
Tcl_Obj *const *objv,
void *dstPtr)
{