diff options
-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..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); |