diff options
author | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-08 04:38:59 +0000 |
---|---|---|
committer | Claudio Fontana <sick_soul@users.sourceforge.net> | 2006-01-08 04:38:59 +0000 |
commit | 91c05b33982a2cb2f25d26310b5110487c6e8300 (patch) | |
tree | f0d1aaec9e43f5ce4ac1bdeb5c20a9773d669c73 /src | |
parent | b5b7b0baf551299e058432d58d5ab2e21d16c312 (diff) | |
download | idutils-91c05b33982a2cb2f25d26310b5110487c6e8300.tar.gz idutils-91c05b33982a2cb2f25d26310b5110487c6e8300.tar.bz2 idutils-91c05b33982a2cb2f25d26310b5110487c6e8300.zip |
* fix bad offtostr usage (now uses return value)
Diffstat (limited to 'src')
-rw-r--r-- | src/mkid.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -405,11 +405,11 @@ scan_files (struct idhead *idhp) hash_init (&token_table, n, token_hash_1, token_hash_2, token_hash_cmp); if (verbose_flag) { char offstr[INT_BUFSIZE_BOUND(off_t)]; - offtostr(largest_member_file, offstr); printf ("files=%ld, largest=%s, slots=%lu\n", idhp->idh_member_file_table.ht_fill, - offstr, token_table.ht_size); + offtostr(largest_member_file, offstr), + token_table.ht_size); } init_hits_signature (0); init_summary (); |