diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-10-30 07:41:49 +0000 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-10-30 07:41:49 +0000 |
commit | 96c10a700abcc299f335739f23fec09bf089757c (patch) | |
tree | 76a352ad535a1a5cdbaba38c0f444d72d2e1c641 /src/file.c | |
parent | 6e37331b4a9f4b88a56164eb7d33509ecdae6faa (diff) |
fix on debug compile
Diffstat (limited to 'src/file.c')
-rw-r--r-- | src/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -484,7 +484,7 @@ void chunk_dump(struct list_head *chunk_list) list_for_each_entry(c, chunk_list, list) { pr_debug("%s %s 0x%010lx-0x%010lx %lu-byte\n", - c->f->src_path, strloc(f->src_is_remote), + c->f->src_path, strloc(c->f->src_is_remote), c->off, c->off + c->len, c->len); } } |