Skip to content

Commit

Permalink
Comment out debug statement
Browse files Browse the repository at this point in the history
  • Loading branch information
ohler55 committed Mar 5, 2018
1 parent fc43bac commit 228f920
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@

## 2.8.4 - March 4, 2018

- Commented out debuf statement.

## 2.8.3 - March 3, 2018

- Attribute values now escape < and > on dump.
Expand Down
2 changes: 1 addition & 1 deletion ext/ox/sax_buf.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ extern int ox_sax_buf_read(Buf buf);

static inline char
buf_get(Buf buf) {
printf("*** drive get from '%s' from start: %ld buf: %p from read_end: %ld\n", buf->tail, buf->tail - buf->head, buf->head, buf->read_end - buf->tail);
//printf("*** drive get from '%s' from start: %ld buf: %p from read_end: %ld\n", buf->tail, buf->tail - buf->head, buf->head, buf->read_end - buf->tail);
if (buf->read_end <= buf->tail) {
if (0 != ox_sax_buf_read(buf)) {
return '\0';
Expand Down
2 changes: 1 addition & 1 deletion lib/ox/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

module Ox
# Current version of the module.
VERSION = '2.8.3'
VERSION = '2.8.4'
end

0 comments on commit 228f920

Please sign in to comment.