X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Flizard.h;h=547f181dc2af3fc813f7d1ebdf3bb8b3109b39aa;hb=ff63510605a8dfc41efb908015364152fa676d9b;hp=616d17b0c07e104f149ffff14f0774d2044c458b;hpb=031256ad2e123eec58521f8e3eb9496c197641d2;p=libucw.git diff --git a/ucw/lizard.h b/ucw/lizard.h index 616d17b0..547f181d 100644 --- a/ucw/lizard.h +++ b/ucw/lizard.h @@ -38,12 +38,12 @@ void lizard_free(struct lizard_buffer *buf); byte *lizard_decompress_safe(const byte *in, struct lizard_buffer *buf, uns expected_length); /* adler32.c */ -uns update_adler32(uns adler, const byte *ptr, uns len); +uns adler32_update(uns adler, const byte *ptr, uns len); static inline uns adler32(const byte *buf, uns len) { - return update_adler32(1, buf, len); + return adler32_update(1, buf, len); } #endif