- Subject: Re: [Ethereal-dev] Voip Calls analysis and Graph analysis
- From: julien.leproust@xxxxxxxx
- Date: Tue, 01 Feb 2005 14:17:31 +0100
Hello,
First, congratulations to Alejandro for this work, that's very useful :)
But graph_analysis.c fails to compile on my Debian Sarge (gcc-3.3)
because of the "boolean" type. I replaced it with gboolean and it works
fine. Is it a Windows-only type?
See following patch.
================================================================================
--- gtk/graph_analysis.c (revision 13225)
+++ gtk/graph_analysis.c (working copy)
@@ -166,7 +166,7 @@
#define HEIGHT_ARROW 6
/****************************************************************************/
-static void draw_arrow(GdkDrawable *pixmap, GdkGC *gc, gint x, gint y,
boolean direction)
+static void draw_arrow(GdkDrawable *pixmap, GdkGC *gc, gint x, gint y,
gboolean direction)
{
GdkPoint arrow_point[3];
================================================================================
Regards,
--
Julien Leproust