Reformat matrix.c

This commit is contained in:
Gergely Polonkai 2015-12-09 11:16:11 +01:00
parent d9772a2a4c
commit f2704cb68a

View File

@ -23,8 +23,8 @@
#include "matrix-connection-manager.h" #include "matrix-connection-manager.h"
#include "matrix-debug.h" #include "matrix-debug.h"
static static TpBaseConnectionManager *
TpBaseConnectionManager *_construct_cm(void) _construct_cm(void)
{ {
TpBaseConnectionManager *base_cm = TP_BASE_CONNECTION_MANAGER( TpBaseConnectionManager *base_cm = TP_BASE_CONNECTION_MANAGER(
g_object_new(MATRIX_TYPE_CONNECTION_MANAGER, NULL)); g_object_new(MATRIX_TYPE_CONNECTION_MANAGER, NULL));
@ -32,16 +32,18 @@ TpBaseConnectionManager *_construct_cm(void)
return base_cm; return base_cm;
} }
int main(int argc, char **argv) { int
main(int argc, char **argv)
{
TpDebugSender *debug_sender; TpDebugSender *debug_sender;
int result; int result;
g_type_init (); g_type_init();
tp_debug_divert_messages (g_getenv ("MATRIX_LOGFILE")); tp_debug_divert_messages(g_getenv("MATRIX_LOGFILE"));
matrix_debug_init(); matrix_debug_init();
debug_sender = tp_debug_sender_dup (); debug_sender = tp_debug_sender_dup();
result = tp_run_connection_manager( result = tp_run_connection_manager(
"telepathy-matrix", VERSION, "telepathy-matrix", VERSION,