Ticket #36366: patch-src-common-globals.c.diff
File patch-src-common-globals.c.diff, 712 bytes (added by ryandesign (Ryan Carsten Schmidt), 11 years ago) |
---|
-
src/common/globals.c
old new 28 28 /** 29 29 * @brief Global xine instance 30 30 */ 31 xine_t *__xineui_global_xine_instance ;31 xine_t *__xineui_global_xine_instance = NULL; 32 32 33 33 /** 34 34 * @brief Configuration file name 35 35 */ 36 char *__xineui_global_config_file ;36 char *__xineui_global_config_file = NULL; 37 37 38 38 /** 39 39 * @brief Verbosity level for the xine fronend 40 40 */ 41 int __xineui_global_verbosity ;41 int __xineui_global_verbosity = 0; 42 42 43 43 #ifdef HAVE_LIRC 44 44 /** 45 45 * @brief Boolean flag to check if LIRC support is enabled at runtime. 46 46 */ 47 int __xineui_global_lirc_enable ;47 int __xineui_global_lirc_enable = 0; 48 48 #endif