[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[no subject]
From: |
Patrice Dumas |
Date: |
Wed, 9 Oct 2024 05:47:49 -0400 (EDT) |
branch: master
commit 5b045bbbc422d5bf27d4eccbce957b16175b0503
Author: Patrice Dumas <pertusus@free.fr>
AuthorDate: Wed Oct 9 11:45:45 2024 +0200
* info/display.c (display_update_one_window): use long type consistent
with windows fields types.
---
ChangeLog | 5 +++++
info/display.c | 2 +-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/ChangeLog b/ChangeLog
index e8ea92e16a..8382233108 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-10-09 Patrice Dumas <pertusus@free.fr>
+
+ * info/display.c (display_update_one_window): use long type consistent
+ with windows fields types.
+
2024-10-08 Patrice Dumas <pertusus@free.fr>
* info/display.c (display_update_line): add int variables to avoid
diff --git a/info/display.c b/info/display.c
index 1e51b56494..b6e0f6f15c 100644
--- a/info/display.c
+++ b/info/display.c
@@ -645,7 +645,7 @@ display_update_node_text (WINDOW *win)
void
display_update_one_window (WINDOW *win)
{
- size_t line_index = 0;
+ long line_index = 0;
DISPLAY_LINE **display = the_display;
signal_block_winch ();