diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-06-19 11:43:10 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-06-19 11:43:10 +0800 |
commit | d5f9b1cad71656bbf79e70038e3c3d13a04d3be5 (patch) | |
tree | 066d6ab3078ff4ebc48512d06c035c2e5e8f6c51 /plugins/profiler/profiler.c | |
parent | 547e123d2777bd3beba36e74e018efb590ed44d4 (diff) | |
download | gsoc2013-evolution-d5f9b1cad71656bbf79e70038e3c3d13a04d3be5.tar gsoc2013-evolution-d5f9b1cad71656bbf79e70038e3c3d13a04d3be5.tar.gz gsoc2013-evolution-d5f9b1cad71656bbf79e70038e3c3d13a04d3be5.tar.bz2 gsoc2013-evolution-d5f9b1cad71656bbf79e70038e3c3d13a04d3be5.tar.lz gsoc2013-evolution-d5f9b1cad71656bbf79e70038e3c3d13a04d3be5.tar.xz gsoc2013-evolution-d5f9b1cad71656bbf79e70038e3c3d13a04d3be5.tar.zst gsoc2013-evolution-d5f9b1cad71656bbf79e70038e3c3d13a04d3be5.zip |
Bug 586332 - Build error (long gint)
Diffstat (limited to 'plugins/profiler/profiler.c')
-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 49e1dffda4..c6843d349b 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); |