Changes between Initial Version and Version 1 of Ticket #71092, comment 11


Ignore:
Timestamp:
Mar 18, 2025, 11:18:16 PM (9 months ago)
Author:
ryandesign (Ryan Carsten Schmidt)
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #71092, comment 11

    initial v1  
    33I was able to fix this by adding a casting to line 3931 of getline.c, as noted in the error message above:
    44
    5 Old line 3931 (getline.c):     tputs((char *)string, nline, gl_tputs_putchar);
     5Old line 3931 (getline.c):
     6{{{
     7tputs((char *)string, nline, gl_tputs_putchar);
     8}}}
    69
    7 Revision:     tputs((char *)string, nline, (int * ) &gl_tputs_putchar);
     10Revision:
     11{{{
     12tputs((char *)string, nline, (int * ) &gl_tputs_putchar);
     13}}}
    814
    915This resolved the build issue.