diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-01-13 14:11:04 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-01-13 14:11:04 +0000 |
commit | 0534eb2c7cf65db5d0e07e03b14d361f04df3e09 (patch) | |
tree | f362a979c0ce9f07d8b4719863905a85cb137c08 /perl_checker.src/common.mli | |
parent | b3e55b9596ad46d0411bae54194beeaa32aab585 (diff) | |
download | perl-MDK-Common-0534eb2c7cf65db5d0e07e03b14d361f04df3e09.tar perl-MDK-Common-0534eb2c7cf65db5d0e07e03b14d361f04df3e09.tar.gz perl-MDK-Common-0534eb2c7cf65db5d0e07e03b14d361f04df3e09.tar.bz2 perl-MDK-Common-0534eb2c7cf65db5d0e07e03b14d361f04df3e09.tar.xz perl-MDK-Common-0534eb2c7cf65db5d0e07e03b14d361f04df3e09.zip |
use a float to save the mtime since int overflows.
this fixes the cache being used partially
Diffstat (limited to 'perl_checker.src/common.mli')
-rw-r--r-- | perl_checker.src/common.mli | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl_checker.src/common.mli b/perl_checker.src/common.mli index 276faca..df09b47 100644 --- a/perl_checker.src/common.mli +++ b/perl_checker.src/common.mli @@ -215,7 +215,7 @@ val words : string -> string list val to_CamelCase : string -> string option val concat_symlink : string -> string -> string val expand_symlinks : string -> string -val mtime : string -> int +val mtime : string -> float val updir : string -> int -> string val string_of_ref : 'a ref -> string val print_endline_flush_quiet : bool ref |