diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-12 02:56:28 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-13 20:28:58 +0800 |
commit | cd53ba990035bdb4861d9660917d457533d4ecb2 (patch) | |
tree | d9c9da2208f4a921c514497ea92d27e3d88481d1 /plugins/profiler | |
parent | b2b27cfa1bfcd6efdac30d2745a6e8cd4e6de134 (diff) | |
download | gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.gz gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.zst gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.zip |
Coding style cleanups.
Diffstat (limited to 'plugins/profiler')
-rw-r--r-- | plugins/profiler/profiler.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/profiler/profiler.c b/plugins/profiler/profiler.c index 1a50b6e740..9744a684de 100644 --- a/plugins/profiler/profiler.c +++ b/plugins/profiler/profiler.c @@ -43,7 +43,7 @@ e_plugin_lib_enable (EPlugin *ep, gint enable) } void -org_gnome_evolution_profiler_event(EPlugin *ep, EProfileEventTarget *t) +org_gnome_evolution_profiler_event (EPlugin *ep, EProfileEventTarget *t) { static FILE *fp; @@ -54,7 +54,7 @@ org_gnome_evolution_profiler_event(EPlugin *ep, EProfileEventTarget *t) fp = fopen(name, "w"); if (fp) fprintf(stderr, "Generating profiling data in '%s'\n", name); - g_free(name); + g_free (name); } if (fp) |