]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - blob.c
Merge branch 'refs/heads/t/mp'
[paraslash.git] / blob.c
diff --git a/blob.c b/blob.c
index 8abecf6aa7301318426de7f44ca9bb96f3bd734b..7798a4939b9d0859b5fe7d4939feb0d237b36b8b 100644 (file)
--- a/blob.c
+++ b/blob.c
  * \param obj2 Pointer to the second integer.
  *
  * \return The values required for an osl compare function.
- *
- * \sa osl_compare_func, osl_hash_compare().
  */
 static int uint32_compare(const struct osl_object *obj1, const struct osl_object *obj2)
 {
-       uint32_t d1 = read_u32((const char *)obj1->data);
-       uint32_t d2 = read_u32((const char *)obj2->data);
+       uint32_t d1 = read_u32(obj1->data);
+       uint32_t d2 = read_u32(obj2->data);
 
        if (d1 < d2)
                return 1;