aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2009-06-02 23:01:42 +0800
committerMatthew Barnes <mbarnes@redhat.com>2009-06-02 23:01:42 +0800
commit5a607f1be68407d7354564f96a10a0c3a85d1982 (patch)
treea15357f7f4b903b0c23b6140ac0d2fdbf496c1ed /plugins
parent6546db5f10cc341932a5e8dee126038c9c997225 (diff)
downloadgsoc2013-evolution-5a607f1be68407d7354564f96a10a0c3a85d1982.tar
gsoc2013-evolution-5a607f1be68407d7354564f96a10a0c3a85d1982.tar.gz
gsoc2013-evolution-5a607f1be68407d7354564f96a10a0c3a85d1982.tar.bz2
gsoc2013-evolution-5a607f1be68407d7354564f96a10a0c3a85d1982.tar.lz
gsoc2013-evolution-5a607f1be68407d7354564f96a10a0c3a85d1982.tar.xz
gsoc2013-evolution-5a607f1be68407d7354564f96a10a0c3a85d1982.tar.zst
gsoc2013-evolution-5a607f1be68407d7354564f96a10a0c3a85d1982.zip
Fix build break.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/profiler/profiler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/profiler/profiler.c b/plugins/profiler/profiler.c
index 49e1dffda4..1200661b51 100644
--- a/plugins/profiler/profiler.c
+++ b/plugins/profiler/profiler.c
@@ -40,7 +40,7 @@ org_gnome_evolution_profiler_event(EPlugin *ep, EProfileEventTarget *t)
if (!fp) {
gchar *name;
- name = g_strdup_printf("eprofile.%ld", (long gint)getpid());
+ name = g_strdup_printf("eprofile.%ld", (glong) getpid());
fp = fopen(name, "w");
if (fp)
fprintf(stderr, "Generating profiling data in `%s'\n", name);