$OpenBSD$ --- src/gpspoint.c.orig Sun Feb 8 16:47:01 2009 +++ src/gpspoint.c Thu Jun 11 22:09:27 2009 @@ -81,8 +81,9 @@ static gdouble line_altitude = VIK_DEFAULT_ALTITUDE; static gboolean line_visible = TRUE; static gboolean line_extended = FALSE; -static gdouble line_speed = NAN; -static gdouble line_course = NAN; +/* I'm not shure this is a good way of doing things */ +static gdouble line_speed = 0; +static gdouble line_course = 0; static gint line_sat = 0; static gint line_fix = 0; /* other possible properties go here */ @@ -293,8 +294,9 @@ void a_gpspoint_read_file(VikTrwLayer *trw, FILE *f ) line_symbol = NULL; line_extended = FALSE; - line_speed = NAN; - line_course = NAN; +/* I'm not shure this is a good way of doing things */ + line_speed = 0; + line_course = 0; line_sat = 0; line_fix = 0; }