X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=blob.c;h=890b92267ef68d390f8806a135c37a2cc9809021;hp=2d7c6050cfb18c198675c1ce4a534dd824983310;hb=23af03dbfb283045ff952267ee83c2b7f2ef6380;hpb=8eb77a20423c3dcc44c4584a082e981391272cb2 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;