Fix cast

https://bugs.freedesktop.org/show_bug.cgi?id=53233
diff --git a/src/hb-shape-plan.cc b/src/hb-shape-plan.cc
index ddfb501..f7a78e4 100644
--- a/src/hb-shape-plan.cc
+++ b/src/hb-shape-plan.cc
@@ -190,11 +190,11 @@
  */
 
 #if 0
-static long
+static unsigned int
 hb_shape_plan_hash (const hb_shape_plan_t *shape_plan)
 {
   return hb_segment_properties_hash (&shape_plan->props) +
-	 shape_plan->default_shaper_list ? 0 : (long) shape_plan->shaper_func;
+	 shape_plan->default_shaper_list ? 0 : (intptr_t) shape_plan->shaper_func;
 }
 #endif