diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-03-17 12:42:56 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-03-17 12:42:56 +0800 |
commit | a88b08167972a93541a6820ff8a0dcfd6c4aecdb (patch) | |
tree | e40db1628176028cc26875103a4616a3be02064c | |
parent | 91171e631e679e2d77e2930527d00b00700293b7 (diff) | |
download | gsoc2013-evolution-a88b08167972a93541a6820ff8a0dcfd6c4aecdb.tar.gz gsoc2013-evolution-a88b08167972a93541a6820ff8a0dcfd6c4aecdb.tar.zst gsoc2013-evolution-a88b08167972a93541a6820ff8a0dcfd6c4aecdb.zip |
Patch from Alex Rostovtsev <tetromino@gmail.com>: Fix for bug #522631 (Make 'e_profile_event_emit' non-static when ENABLE_PROFILING is defined)
svn path=/trunk/; revision=35208
-rw-r--r-- | e-util/ChangeLog | 7 | ||||
-rw-r--r-- | e-util/e-profile-event.c | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index 8c6978b5e0..736421c952 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,10 @@ +2008-03-17 Alex Rostovtsev <tetromino@gmail.com> + + ** Fix for bug #522631 + + * e-profile-event.c: Make 'e_profile_event_emit' non-static when + ENABLE_PROFILING is defined. + 2008-03-11 Matthew Barnes <mbarnes@redhat.com> ** Fixes part of bug #513951 diff --git a/e-util/e-profile-event.c b/e-util/e-profile-event.c index 023f76746e..1bb54158ad 100644 --- a/e-util/e-profile-event.c +++ b/e-util/e-profile-event.c @@ -125,7 +125,7 @@ e_profile_event_target_new(EProfileEvent *eme, const char *id, const char *uid, } #ifdef ENABLE_PROFILING -static void +void e_profile_event_emit(const char *id, const char *uid, guint32 flags) { EProfileEvent *epe = e_profile_event_peek(); |