diff options
author | Kjartan Maraas <kmaraas@src.gnome.org> | 2007-10-31 06:21:14 +0800 |
---|---|---|
committer | Kjartan Maraas <kmaraas@src.gnome.org> | 2007-10-31 06:21:14 +0800 |
commit | f13fd21b50fa97b4ce7e29ce82d471c1f1870c11 (patch) | |
tree | 4f04f16373ca46b199bcd2677c9d2d434d308d9f /plugins/profiler | |
parent | 5c1b5556bf7d92acddefa8bd01911299b5acad61 (diff) | |
download | gsoc2013-evolution-f13fd21b50fa97b4ce7e29ce82d471c1f1870c11.tar.gz gsoc2013-evolution-f13fd21b50fa97b4ce7e29ce82d471c1f1870c11.tar.zst gsoc2013-evolution-f13fd21b50fa97b4ce7e29ce82d471c1f1870c11.zip |
Fix warnings from sparse and gcc
svn path=/trunk/; revision=34458
Diffstat (limited to 'plugins/profiler')
-rw-r--r-- | plugins/profiler/ChangeLog | 4 | ||||
-rw-r--r-- | plugins/profiler/profiler.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/plugins/profiler/ChangeLog b/plugins/profiler/ChangeLog index 65c4151a04..50dfdf6e80 100644 --- a/plugins/profiler/ChangeLog +++ b/plugins/profiler/ChangeLog @@ -1,3 +1,7 @@ +2007-10-26 Kjartan Maraas <kmaraas@gnome.org> + + * profiler.c: Add missing includes. + 2007-04-02 Sankar P <psankar@novell.com> * Committed on behalf of Gilles Dartiguelongue <dartigug@esiee.fr> diff --git a/plugins/profiler/profiler.c b/plugins/profiler/profiler.c index 7d3b4e23f7..915a39deba 100644 --- a/plugins/profiler/profiler.c +++ b/plugins/profiler/profiler.c @@ -25,6 +25,8 @@ #include <string.h> #include <stdio.h> +#include <sys/types.h> +#include <unistd.h> #include <glib.h> #include <e-util/e-profile-event.h> |