mirror of
https://git.freebsd.org/ports.git
synced 2025-05-12 23:31:50 -04:00
Ensure that there is only one variable definition per each object, as the C (and C++) standards mandated for years and compilers started to enforce as of recently (Clang 11, GCC 10).
10 lines
377 B
C
10 lines
377 B
C
--- gschem/src/x_menus.c.orig 2013-09-25 20:59:27 UTC
|
|
+++ gschem/src/x_menus.c
|
|
@@ -58,6 +58,7 @@ static GtkItemFactoryEntry popup_items[] = {
|
|
{N_("/Up"), NULL, i_callback_hierarchy_up, 0, NULL},
|
|
};
|
|
|
|
+GtkRecentManager *recent_manager;
|
|
int npopup_items = sizeof(popup_items) / sizeof(popup_items[0]);
|
|
|
|
/*! \todo Finish function documentation!!!
|