GNOME Bugzilla – Bug 704117
nautilus-global-preferences: use 'extern' properly
Last modified: 2013-07-12 19:18:48 UTC
See patch.
Created attachment 249028 [details] [review] nautilus-global-preferences: use 'extern' properly Variables in header files should have 'extern' on them and be defined from a single .c file, otherwise you get a copy of the variable every time you #include the header. -fcommon masks this problem, but building with -fno-common fails because of it.
Review of attachment 249028 [details] [review]: Not a nautilus reviewer, but this looks correct to me.
Attachment 249028 [details] pushed as 96554c2 - nautilus-global-preferences: use 'extern' properly