]> sourceware.org Git - systemtap.git/commitdiff
tweak tz_ctime() parametrization to satisfy kerneldoc
authorFrank Ch. Eigler <fche@elastic.org>
Sun, 7 Nov 2010 12:36:16 +0000 (07:36 -0500)
committerFrank Ch. Eigler <fche@elastic.org>
Sun, 7 Nov 2010 12:36:16 +0000 (07:36 -0500)
tapset/tzinfo.stp

index 7498158fa47e1cd3d66d3943413e0ab4a679d3fb..5296b4a11e89608201b4983daf29fa153820f4de 100644 (file)
@@ -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())
 }
 
This page took 0.108481 seconds and 5 git commands to generate.