GNOME Bugzilla – Bug 704123
screenshot-config: make proper use of 'extern'
Last modified: 2013-07-12 19:19:19 UTC
See patch.
Created attachment 249033 [details] [review] screenshot-config: make proper use of 'extern' 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 249033 [details] [review]: Looks good!
Attachment 249033 [details] pushed as 9c53100 - screenshot-config: make proper use of 'extern'