aboutsummaryrefslogtreecommitdiff
path: root/graphics/ocaml-images/files/patch-src_bitmap.ml
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/ocaml-images/files/patch-src_bitmap.ml')
-rw-r--r--graphics/ocaml-images/files/patch-src_bitmap.ml11
1 files changed, 0 insertions, 11 deletions
diff --git a/graphics/ocaml-images/files/patch-src_bitmap.ml b/graphics/ocaml-images/files/patch-src_bitmap.ml
deleted file mode 100644
index eec47155e7a5..000000000000
--- a/graphics/ocaml-images/files/patch-src_bitmap.ml
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/bitmap.ml.orig 2011-06-22 18:04:32 UTC
-+++ src/bitmap.ml
-@@ -186,7 +186,7 @@ module Make(B:Bitdepth) = struct
-
- let swap_out_eldest words =
- let sorted =
-- Sort.list (fun b1 b2 -> b1.last_used < b2.last_used) !swappable_blocks in
-+ List.sort (fun b1 b2 -> compare b1.last_used b2.last_used) !swappable_blocks in
- let rec swapper sorted i =
- match sorted with
- | [] -> ()