diff options
Diffstat (limited to 'ot_stats.c')
-rw-r--r-- | ot_stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -18,7 +18,7 @@ | |||
18 | #include "ot_stats.h" | 18 | #include "ot_stats.h" |
19 | 19 | ||
20 | /* Converter function from memory to human readable hex strings */ | 20 | /* Converter function from memory to human readable hex strings */ |
21 | static char*to_hex(char*d,ot_byte*s){const char*m="0123456789ABCDEF";char*e=d+40;while(d<e){*d++=m[*s>>4];*d++=m[*s++&15];}*d=0;return d;} | 21 | static char*to_hex(char*d,ot_byte*s){char*m="0123456789ABCDEF";char *t=d;char*e=d+40;while(d<e){*d++=m[*s>>4];*d++=m[*s++&15];}*d=0;return t;} |
22 | 22 | ||
23 | typedef struct { size_t val; ot_torrent * torrent; } ot_record; | 23 | typedef struct { size_t val; ot_torrent * torrent; } ot_record; |
24 | 24 | ||