Skip to content

Commit

Permalink
Fixed biod#328
Browse files Browse the repository at this point in the history
  • Loading branch information
pjotrp committed Feb 7, 2018
1 parent bebb8f6 commit fd33ae3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cram/wrappers.d
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ struct RcPtr(T, alias Free) {
this(this)
{
static if (is(T == cram_slice)) {
debug writeln("COPIED #", data.payload_id + 1);
debug stderr.writeln("COPIED #", data.payload_id + 1);
}
}

Expand Down Expand Up @@ -159,7 +159,7 @@ struct CramContainerRange {
auto err_msg = "Failed to read container header";
while (true) {
// read container header
debug writeln("cram_read_container");
debug stderr.writeln("cram_read_container");
auto ptr = nullChecked!cram_read_container(err_msg, _fd);
if (ptr is null) {
empty = true;
Expand Down

0 comments on commit fd33ae3

Please sign in to comment.