From dda29cf853d69a7ae0760c7bcc39b3ce825e1ec7 Mon Sep 17 00:00:00 2001 From: "Frank Ch. Eigler" Date: Sun, 7 Nov 2010 07:36:16 -0500 Subject: [PATCH] tweak tz_ctime() parametrization to satisfy kerneldoc --- tapset/tzinfo.stp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tapset/tzinfo.stp b/tapset/tzinfo.stp index 7498158fa..5296b4a11 100644 --- a/tapset/tzinfo.stp +++ b/tapset/tzinfo.stp @@ -45,7 +45,7 @@ function tz_name() { * local time zone. The string length may vary. The time zone information is * passed by staprun at script startup only. */ -function tz_ctime(s) { - return (ctime(s - tz_gmtoff()) . " " . tz_name()) +function tz_ctime(epochsecs) { + return (ctime(epochsecs - tz_gmtoff()) . " " . tz_name()) } -- 2.43.5