summaryrefslogtreecommitdiffstats
path: root/generic/tclExecute.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:54:35 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-06-04 15:54:35 (GMT)
commitca3ac898ea7724652c49e3cb7f57fcf974b22a16 (patch)
treeb5c98217485282023c93ab5b46c2cfde0af5ddc5 /generic/tclExecute.c
parentcd72d108bf14caa354d011a2ce41426ea011da2a (diff)
downloadtcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.zip
tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.gz
tcl-ca3ac898ea7724652c49e3cb7f57fcf974b22a16.tar.bz2
Make function definitions have right argument style
Diffstat (limited to 'generic/tclExecute.c')
-rw-r--r--generic/tclExecute.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index a0d04e8..5d4bff3 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -7865,8 +7865,10 @@ FinalizeOONextFilter(
* Helper to calculate small powers of integers whose result is wide.
*/
static inline Tcl_WideInt
-WidePwrSmallExpon(Tcl_WideInt w1, long exponent) {
-
+WidePwrSmallExpon(
+ Tcl_WideInt w1,
+ long exponent)
+{
Tcl_WideInt wResult;
wResult = w1 * w1; /* b**2 */