diff options
author | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 1999-12-10 09:40:51 +0000 |
---|---|---|
committer | Jacques Garrigue <garrigue at math.nagoya-u.ac.jp> | 1999-12-10 09:40:51 +0000 |
commit | c5d28c52dd8fa81cc7b09c39b3fa751c1578a7d8 (patch) | |
tree | c3594e4a904e2345f8ad087dd32c5f28e375c303 /otherlibs/labltk/browser/useunix.ml | |
parent | e6343bfb447c8fb170981d46b5debb7855d95e47 (diff) |
various improvements
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@2684 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/labltk/browser/useunix.ml')
-rw-r--r-- | otherlibs/labltk/browser/useunix.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/labltk/browser/useunix.ml b/otherlibs/labltk/browser/useunix.ml index c0b7e5966..33dd20f2b 100644 --- a/otherlibs/labltk/browser/useunix.ml +++ b/otherlibs/labltk/browser/useunix.ml @@ -17,7 +17,7 @@ let get_files_in_directory dir = let is_directory name = try - (stat :name).st_kind = S_DIR + (stat name).st_kind = S_DIR with _ -> false let get_directories_in_files :path = |