Skip to content

Commit

Permalink
core: pv - default number of buffer slots set to 40
Browse files Browse the repository at this point in the history
- it was 10
- allow handling more chained evaluations in large strings

(cherry picked from commit c087b1d)
(cherry picked from commit 352af1b)
  • Loading branch information
miconda committed Jun 21, 2018
1 parent f27bfe6 commit 5c89c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/pvapi.c
Expand Up @@ -1950,7 +1950,7 @@ static char **_pv_print_buffer = NULL;
static int _pv_print_buffer_size = PV_DEFAULT_PRINT_BUFFER_SIZE;
static int _pv_print_buffer_size_active = 0;
/* 6 mod params + 4 direct usage from mods */
#define PV_DEFAULT_PRINT_BUFFER_SLOTS 10
#define PV_DEFAULT_PRINT_BUFFER_SLOTS 40
static int _pv_print_buffer_slots = PV_DEFAULT_PRINT_BUFFER_SLOTS;
static int _pv_print_buffer_slots_active = 0;
static int _pv_print_buffer_index = 0;
Expand Down

0 comments on commit 5c89c5b

Please sign in to comment.