comparison src/debug.c @ 11504:921f64947cad

[gaim-migrate @ 13749] Make gaim_debug_vargs static. It was commented for removal and with the gadu-gadu changes, nothing else needs it to be non-static. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 11 Sep 2005 05:16:59 +0000
parents bb0d7b719af2
children e1e5462b7d81
comparison
equal deleted inserted replaced
11503:cd0c8830d881 11504:921f64947cad
38 * It doesn't matter what this value was the last time Gaim was 38 * It doesn't matter what this value was the last time Gaim was
39 * started, so it doesn't make sense to save it in prefs. 39 * started, so it doesn't make sense to save it in prefs.
40 */ 40 */
41 static gboolean debug_enabled = FALSE; 41 static gboolean debug_enabled = FALSE;
42 42
43 /* XXX I want to make this static but gg uses this for internal debug level 43 static void
44 * stuff and I don't really feel like unwrapping it right now. -Etan */
45 void
46 gaim_debug_vargs(GaimDebugLevel level, const char *category, 44 gaim_debug_vargs(GaimDebugLevel level, const char *category,
47 const char *format, va_list args) 45 const char *format, va_list args)
48 { 46 {
49 GaimDebugUiOps *ops; 47 GaimDebugUiOps *ops;
50 48