Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • logging.c

    r0792d99 r0a9ffc5  
    436436void owl_log_init(void)
    437437{
     438  GError *error = NULL;
    438439  log_context = g_main_context_new();
    439 #if GLIB_CHECK_VERSION(2, 31, 0)
    440   logging_thread = g_thread_new("logging",
    441                                 owl_log_thread_func,
    442                                 NULL);
    443 #else
    444   GError *error = NULL;
    445440  logging_thread = g_thread_create(owl_log_thread_func,
    446441                                   NULL,
     
    453448    exit(1);
    454449  }
    455 #endif
    456450 
    457451}
Note: See TracChangeset for help on using the changeset viewer.