Skip to content

Commit

Permalink
dirtrack: missing conversion
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbou committed Mar 27, 2019
1 parent d07ca90 commit 25d98d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/opamDirTrack.ml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ let cached_digest =
fun f size mtime ->
try
let csize, cmtime, digest = Hashtbl.find item_cache f in
if csize = size || mtime = cmtime then digest
if csize = size || mtime = cmtime then Digest.to_hex digest
else raise Not_found
with Not_found ->
let digest = Digest.file f in
Expand Down

0 comments on commit 25d98d3

Please sign in to comment.