~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to src/tracks.c

  • Committer: Paul Wise
  • Author(s): Tilmann Bubeck
  • Date: 2020-01-25 00:00:46 UTC
  • Revision ID: pabs3@bonedaddy.net-20200125000046-l314f1wn3ygv2krd
Convert dialog10 variables to static variables

This fixes a build failure with the GCC 10 linker,
which requires all variables to either be static
or unique within a single linking unit.

See-also: https://gcc.gnu.org/gcc-10/porting_to.html#common

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
GSList *loaded_track = NULL;
32
32
GtkWidget *window12;
33
 
GtkWidget *dialog10;
 
33
static GtkWidget *dialog10;
34
34
 
35
35
 
36
36