Changes between Initial Version and Version 1 of Ticket #71092, comment 11
- Timestamp:
- Mar 18, 2025, 11:18:16 PM (9 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #71092, comment 11
initial v1 3 3 I was able to fix this by adding a casting to line 3931 of getline.c, as noted in the error message above: 4 4 5 Old line 3931 (getline.c): tputs((char *)string, nline, gl_tputs_putchar); 5 Old line 3931 (getline.c): 6 {{{ 7 tputs((char *)string, nline, gl_tputs_putchar); 8 }}} 6 9 7 Revision: tputs((char *)string, nline, (int * ) &gl_tputs_putchar); 10 Revision: 11 {{{ 12 tputs((char *)string, nline, (int * ) &gl_tputs_putchar); 13 }}} 8 14 9 15 This resolved the build issue.
