diff options
Diffstat (limited to 'src/b_h.c')
-rw-r--r-- | src/b_h.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,7 +36,7 @@ static uint64_t b_get_total_hist(t_msh *msh) ptr++; } } - ptr = msh->curr_hist; + ptr = msh->curr_hist_ptr; while (*ptr != C_NUL) { if (*ptr == C_LF) @@ -81,7 +81,7 @@ static void b_print_history(uint64_t asked, uint64_t total, t_msh *msh) to_print = (total - asked < 0) ? (0) : (total - asked); i = b_print_prev_history(asked, total, msh); - if ((hist = ft_strdup(msh->curr_hist)) == NULL) + if ((hist = ft_strdup(msh->curr_hist_ptr)) == NULL) return ; tok = ft_strtok(hist, "\n"); while (tok != NULL) |