From 4ccbc9bd0eae8c604d570ce22654fc79822bd9dc Mon Sep 17 00:00:00 2001 From: erdgeist <> Date: Tue, 6 Nov 2007 12:20:32 +0000 Subject: Fixed a forgotten unlock and a messed up string pointer --- ot_stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ot_stats.c') diff --git a/ot_stats.c b/ot_stats.c index a1c85af..6857376 100644 --- a/ot_stats.c +++ b/ot_stats.c @@ -18,7 +18,7 @@ #include "ot_stats.h" /* Converter function from memory to human readable hex strings */ -static char*to_hex(char*d,ot_byte*s){const char*m="0123456789ABCDEF";char*e=d+40;while(d>4];*d++=m[*s++&15];}*d=0;return d;} +static char*to_hex(char*d,ot_byte*s){char*m="0123456789ABCDEF";char *t=d;char*e=d+40;while(d>4];*d++=m[*s++&15];}*d=0;return t;} typedef struct { size_t val; ot_torrent * torrent; } ot_record; -- cgit v1.2.3