X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=gcrypt.c;h=f4d4cc6f9d20678ef5a6fa5b41672db108ea2345;hp=751c1a4a65d4d0b3b9e5a90242462a83d3fc6cf1;hb=591fd6cd2d65242856a953a2b5dee7e964128abf;hpb=56df9bb38aa4725f9244a7898d765608d8a1fffa diff --git a/gcrypt.c b/gcrypt.c index 751c1a4a..f4d4cc6f 100644 --- a/gcrypt.c +++ b/gcrypt.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011-2014 Andre Noll + * Copyright (C) 2011-2014 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -26,7 +26,7 @@ static void dump_buffer(const char *msg, unsigned char *buf, int len) { int i; - fprintf(stderr, "%s (%u bytes): ", msg, len); + fprintf(stderr, "%s (%d bytes): ", msg, len); for (i = 0; i < len; i++) fprintf(stderr, "%02x ", buf[i]); fprintf(stderr, "\n");