[Gpredict-svn] SF.net SVN: gpredict:[771] trunk/src/gtk-single-sat.c
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <aa...@us...> - 2011-02-22 14:51:26
|
Revision: 771 http://gpredict.svn.sourceforge.net/gpredict/?rev=771&view=rev Author: aa1vs Date: 2011-02-22 14:51:20 +0000 (Tue, 22 Feb 2011) Log Message: ----------- Eliminate compiler warning in gtk-single-sat.c Modified Paths: -------------- trunk/src/gtk-single-sat.c Modified: trunk/src/gtk-single-sat.c =================================================================== --- trunk/src/gtk-single-sat.c 2011-02-20 21:33:14 UTC (rev 770) +++ trunk/src/gtk-single-sat.c 2011-02-22 14:51:20 UTC (rev 771) @@ -2,9 +2,10 @@ /* Gpredict: Real-time satellite tracking and orbit prediction program - Copyright (C) 2001-2009 Alexandru Csete, OZ9AEC. + Copyright (C) 2001-2011 Alexandru Csete, OZ9AEC. Authors: Alexandru Csete <oz...@gm...> + Charles Suprin <ham...@gm...> Comments, questions and bugreports should be submitted via http://sourceforge.net/projects/gpredict/ @@ -724,7 +725,7 @@ GtkSingleSat *single_sat = GTK_SINGLE_SAT (user_data); sat_t *sat = SAT (value); - single_sat->sats = g_slist_insert_sorted (single_sat->sats,sat, sat_name_compare); + single_sat->sats = g_slist_insert_sorted (single_sat->sats,sat, (GCompareFunc) sat_name_compare); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |