git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Newcomer][PATCH] graph.c: change graph_line->width type to int to remove sign-compare warning
@ 2025-05-21 19:13 Octavio Carneiro
  2025-05-21 23:08 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Octavio Carneiro @ 2025-05-21 19:13 UTC (permalink / raw)
  To: git; +Cc: ocarneiro1, ps, gitster, newren

A comparison between graph_line->width (of type size_t) and git_graph->width (of type int) causes -Wsign-compare to complain.

Looking at the git_graph struct definition, its size variables are int-typed.

Therefore, I changed the type of graph_line->width to also be a int, thus removing the warning trigger.

Signed-off-by: Octavio Carneiro <ocarneiro1@gmail.com>
---
 graph.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/graph.c b/graph.c
index 26f6fbf000..cb2221700e 100644
--- a/graph.c
+++ b/graph.c
@@ -1,5 +1,3 @@
-#define DISABLE_SIGN_COMPARE_WARNINGS
-
 #include "git-compat-util.h"
 #include "gettext.h"
 #include "config.h"
@@ -115,7 +113,7 @@ static const char *column_get_color_code(unsigned short color)
 
 struct graph_line {
 	struct strbuf *buf;
-	size_t width;
+	int width;
 };
 
 static inline void graph_line_addch(struct graph_line *line, int c)
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-05-23  3:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-21 19:13 [Newcomer][PATCH] graph.c: change graph_line->width type to int to remove sign-compare warning Octavio Carneiro
2025-05-21 23:08 ` Junio C Hamano
2025-05-23  3:25   ` O. C.

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).