Skip to content

Commit e158130

Browse files
committed
patch 7.4.1659
Problem: Compiler warning for argument type. (Manuel Ortega) Solution: Remove "&".
1 parent 1473551 commit e158130

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/os_unix.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5467,7 +5467,7 @@ WaitForCharOrMouse(long msec, int *break_loop)
54675467
;
54685468

54695469
#else
5470-
avail = RealWaitForChar(read_cmd_fd, msec, NULL, &break_loop);
5470+
avail = RealWaitForChar(read_cmd_fd, msec, NULL, break_loop);
54715471
#endif
54725472
return avail;
54735473
}

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -748,6 +748,8 @@ static char *(features[]) =
748748

749749
static int included_patches[] =
750750
{ /* Add new patch number below this line */
751+
/**/
752+
1659,
751753
/**/
752754
1658,
753755
/**/

0 commit comments

Comments
 (0)