diff options
author | txh18 <[email protected]> | 2015-12-09 15:54:40 +0800 |
---|---|---|
committer | txh18 <[email protected]> | 2015-12-09 15:54:40 +0800 |
commit | d5c65e1df535e6ad1c827de44eb463382a07b10a (patch) | |
tree | 6c9263562cecb9ec9c95c3d234d874b26869867b | |
parent | 2e96ce1dcfbbcedc28be96cfc1a006cd5b4d5dab (diff) |
...
-rw-r--r-- | nerv/lib/io/chunk_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nerv/lib/io/chunk_file.c b/nerv/lib/io/chunk_file.c index 4e00b0b..71db820 100644 --- a/nerv/lib/io/chunk_file.c +++ b/nerv/lib/io/chunk_file.c @@ -112,7 +112,7 @@ static ChunkFile *open_read(const char *fn, Status *status) { for (i = 0;; offset += chunk_len, i++) { ChunkInfo *cip; - fprintf(stderr, "reading chunk %d from %d\n", i, (int)offset); + fprintf(stdout, "reading chunk %d from %d\n", i, (int)offset); /* skip to the begining of chunk i */ if (fseeko(fp, offset, SEEK_SET) != 0) { |