aboutsummaryrefslogtreecommitdiffstats
path: root/libempathy/empathy-log-store-empathy.c
diff options
context:
space:
mode:
authorJonny Lamb <jonny.lamb@collabora.co.uk>2009-03-06 19:53:13 +0800
committerXavier Claessens <xclaesse@src.gnome.org>2009-03-06 19:53:13 +0800
commit26cad0730c6d4ccffc7b8bec79778b96460f11d0 (patch)
tree73f157e67ed491f7a87e9a5d8a99fc2c504dcdeb /libempathy/empathy-log-store-empathy.c
parentf0cd7a19b1b32bd31b587342c6f3a6b17c79458d (diff)
downloadgsoc2013-empathy-26cad0730c6d4ccffc7b8bec79778b96460f11d0.tar
gsoc2013-empathy-26cad0730c6d4ccffc7b8bec79778b96460f11d0.tar.gz
gsoc2013-empathy-26cad0730c6d4ccffc7b8bec79778b96460f11d0.tar.bz2
gsoc2013-empathy-26cad0730c6d4ccffc7b8bec79778b96460f11d0.tar.lz
gsoc2013-empathy-26cad0730c6d4ccffc7b8bec79778b96460f11d0.tar.xz
gsoc2013-empathy-26cad0730c6d4ccffc7b8bec79778b96460f11d0.tar.zst
gsoc2013-empathy-26cad0730c6d4ccffc7b8bec79778b96460f11d0.zip
Use g_list_next (l) instead of l->next.
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk> svn path=/trunk/; revision=2613
Diffstat (limited to 'libempathy/empathy-log-store-empathy.c')
-rw-r--r--libempathy/empathy-log-store-empathy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy/empathy-log-store-empathy.c b/libempathy/empathy-log-store-empathy.c
index 8a43c4892..5d370bf9f 100644
--- a/libempathy/empathy-log-store-empathy.c
+++ b/libempathy/empathy-log-store-empathy.c
@@ -575,7 +575,7 @@ log_store_empathy_search_new (EmpathyLogStore *self,
files = log_store_empathy_get_all_files (self, NULL);
DEBUG ("Found %d log files in total", g_list_length (files));
- for (l = files; l; l = l->next)
+ for (l = files; l; l = g_list_next (l))
{
gchar *filename;
GMappedFile *file;