mirror of
https://github.com/csete/gpredict
synced 2026-08-13 17:39:46 -04:00
Eliminate compiler warning in gtk-single-sat.c
git-svn-id: https://gpredict.svn.sourceforge.net/svnroot/gpredict/trunk@771 ab6734ba-2843-0410-b83b-99c217ef6c0f
This commit is contained in:
parent
d08b46d546
commit
cabb42ea8e
1 changed files with 3 additions and 2 deletions
|
|
@ -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 <oz9aec@gmail.com>
|
||||
Charles Suprin <hamaa1vs@gmail.com>
|
||||
|
||||
Comments, questions and bugreports should be submitted via
|
||||
http://sourceforge.net/projects/gpredict/
|
||||
|
|
@ -724,7 +725,7 @@ store_sats (gpointer key, gpointer value, gpointer user_data)
|
|||
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);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue