Skip to content
This repository has been archived by the owner on Jul 5, 2023. It is now read-only.
/ veriwell Public archive

Commit

Permalink
incremental opens must honor compression flags
Browse files Browse the repository at this point in the history
  • Loading branch information
markhummel committed Sep 30, 2005
1 parent 55a87fe commit c358b84
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lxt/lxt.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ struct lxt_s {
int hunk;
};
typedef struct lxt_s lxt_t, *lxt_p;
lxt_t lxt = { 0, 0, 0, 0, 1, 100*1024*1024, 0, 0, 0, 0, 0, 0, 0 };
static lxt_t lxt = { 0, 0, 0, 0, 1, 100*1024*1024, 0, 0, 0, 0, 0, 0, 0 };

static void lxt_close();
static void lxt_enable( int on );
Expand Down Expand Up @@ -738,7 +738,9 @@ static void lxt_incinit()
return;
}
lt_set_clock_compress( lxt.t );
lt_set_chg_compress( lxt.t );
if( lxt.compress ) {
lt_set_chg_compress( lxt.t );
}
lxt.updateList = 0;
lxt.eventList = 0;
lt_set_initial_value( lxt.t, 'x' );
Expand Down

0 comments on commit c358b84

Please sign in to comment.