diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-03-29 06:54:27 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-03-29 06:55:22 +0800 |
commit | fa2da5acd6f45520739f747062d04cdb866b2428 (patch) | |
tree | 4716aebb3c2a193cc3cd398d2878d0e60aa2ee1e /plugins/profiler | |
parent | 68581a10047876899dc97cb30777435e1f42a5a1 (diff) | |
download | gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.gz gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.tar.zst gsoc2013-evolution-fa2da5acd6f45520739f747062d04cdb866b2428.zip |
Fix mismatched quotes.
Diffstat (limited to 'plugins/profiler')
-rw-r--r-- | plugins/profiler/profiler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/profiler/profiler.c b/plugins/profiler/profiler.c index b57ba83817..e3ecd07a9e 100644 --- a/plugins/profiler/profiler.c +++ b/plugins/profiler/profiler.c @@ -45,7 +45,7 @@ org_gnome_evolution_profiler_event(EPlugin *ep, EProfileEventTarget *t) name = g_strdup_printf("eprofile.%ld", (glong) getpid()); fp = fopen(name, "w"); if (fp) - fprintf(stderr, "Generating profiling data in `%s'\n", name); + fprintf(stderr, "Generating profiling data in '%s'\n", name); g_free(name); } |