# HG changeset patch # User ib # Date 1304671638 0 # Node ID 9a7b0dab3d959e31549dd7a2cc9adb97355391d2 # Parent ac194a26317b2bdc4250bd504d6818c1e2322d78 Fix compilation error with Win32 GUI. A "gui/win32/wincfg.c:59: error: static declaration of 'gui_conf' follows non-static declaration" occurred because gui_conf recently was changed 'extern'. Patch by Stephen Sheldon, sfsheldo gmail com. diff -r ac194a26317b -r 9a7b0dab3d95 gui/win32/wincfg.c --- a/gui/win32/wincfg.c Fri May 06 08:17:05 2011 +0000 +++ b/gui/win32/wincfg.c Fri May 06 08:47:18 2011 +0000 @@ -56,7 +56,7 @@ int gui_sub_pos_x = -1; int gui_sub_pos_y = -1; -static m_config_t *gui_conf; +m_config_t *gui_conf; static const m_option_t gui_opts[] = { { "priority", &proc_priority, CONF_TYPE_STRING, 0, 0, 0, NULL},