Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Ohler committed Sep 8, 2011
1 parent f756bec commit 8dbcd52
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ext/ox/sax.c
Expand Up @@ -36,11 +36,12 @@
#include "ruby.h"
#include "ox.h"

// 65536 = 0x00010000
#define BUF_SIZE = 0x00010000

typedef struct _SaxDrive {
// TBD reader function
char buf[0x00010000];
char *buf_end;
char *cur;
char *read_end;
char *str; // start of current string being read
void *read_func;
union {
FILE *fp;
Expand Down

0 comments on commit 8dbcd52

Please sign in to comment.