diff options
author | Milan Crha <mcrha@redhat.com> | 2009-08-31 17:47:12 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-08-31 17:47:12 +0800 |
commit | 06d9b597702dfd0fede5cb35d3d10208b3e31276 (patch) | |
tree | 4d8a0a5a3f28a62917f17e0ac2ea8b4661bf18e5 /plugins | |
parent | 3f3e5d01b16438914b269b04c875a2090bd2027b (diff) | |
download | gsoc2013-evolution-06d9b597702dfd0fede5cb35d3d10208b3e31276.tar.gz gsoc2013-evolution-06d9b597702dfd0fede5cb35d3d10208b3e31276.tar.zst gsoc2013-evolution-06d9b597702dfd0fede5cb35d3d10208b3e31276.zip |
Fix for few compiler warnings
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/profiler/profiler.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/profiler/profiler.c b/plugins/profiler/profiler.c index 1200661b51..b57ba83817 100644 --- a/plugins/profiler/profiler.c +++ b/plugins/profiler/profiler.c @@ -32,6 +32,8 @@ #include <glib.h> #include <e-util/e-profile-event.h> +void org_gnome_evolution_profiler_event (EPlugin *ep, EProfileEventTarget *t); + void org_gnome_evolution_profiler_event(EPlugin *ep, EProfileEventTarget *t) { @@ -48,5 +50,5 @@ org_gnome_evolution_profiler_event(EPlugin *ep, EProfileEventTarget *t) } if (fp) - fprintf(fp, "%d.%d: %s,%s\n", t->tv.tv_sec, t->tv.tv_usec, t->id, t->uid); + fprintf(fp, "%d.%d: %s,%s\n", (gint) t->tv.tv_sec, (gint) t->tv.tv_usec, t->id, t->uid); } |