mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 17:46:38 -04:00
20 lines
593 B
XML
20 lines
593 B
XML
--- doc/docbook/src/tcl.xml.orig 2019-06-01 23:24:33 UTC
|
|
+++ doc/docbook/src/tcl.xml
|
|
@@ -755,7 +755,7 @@ Combination of previously defined matrices, deep lists
|
|
if (pm->fdata[i] > max)
|
|
max = pm->fdata[i];
|
|
|
|
- sprintf( interp->result, "%f", max );
|
|
+ sprintf( Tcl_GetStringResult(interp), "%f", max );
|
|
return TCL_OK;
|
|
}
|
|
|
|
@@ -768,7 +768,7 @@ Combination of previously defined matrices, deep lists
|
|
if (pm->fdata[i] < min)
|
|
min = pm->fdata[i];
|
|
|
|
- sprintf( interp->result, "%f", min );
|
|
+ sprintf( Tcl_GetStringResult(interp), "%f", min );
|
|
return TCL_OK;
|
|
}
|
|
</programlisting>
|