X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=blob.c;h=890b92267ef68d390f8806a135c37a2cc9809021;hp=2d7c6050cfb18c198675c1ce4a534dd824983310;hb=263cda6ee386b9c5d409ca02798632ca67282796;hpb=bd5b8a466db2d9a15bb7f953caac489a402862fc diff --git a/blob.c b/blob.c index 2d7c6050..890b9226 100644 --- a/blob.c +++ b/blob.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2007 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2007 Andre Noll , see file COPYING. */ /** \file blob.c Macros and functions for blob handling. */ @@ -33,8 +29,8 @@ */ 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;