Skip to content
Snippets Groups Projects
Commit 1b6c3321 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Actually constify showbuf()

Geeze, this is ugly.
parent 13919145
Branches
Tags
No related merge requests found
......@@ -2755,7 +2755,6 @@ void showbuf(int mode, int left, int top, int width, int height, const char *tit
tmp_buffer2[0].ch=api->chars->help_top_left;
j=title_len;
if(j>width-6) {
*(title+width-6)=0;
j=width-6;
}
for(i=1;i<(width-j)/2;i++)
......@@ -2769,7 +2768,7 @@ void showbuf(int mode, int left, int top, int width, int height, const char *tit
}
tmp_buffer2[i].ch = api->chars->help_titlebreak_left;
i+=2;
for(pc=title;*pc;pc++) {
for(pc=title;*pc && pc < &title[j];pc++) {
tmp_buffer2[i].ch=*pc;
i++;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment