summaryrefslogtreecommitdiffstats
path: root/src/ithumb-writer.c
diff options
context:
space:
mode:
authorChristophe Fergeau <teuf@gnome.org>2008-05-29 20:16:16 +0000
committerChristophe Fergeau <teuf@gnome.org>2008-05-29 20:16:16 +0000
commit689d2b23e704b256e6d5d350ec5e6a4bd131fef3 (patch)
tree7ce7ac42f0cf1886d921902b5f24abcbc84fd5cd /src/ithumb-writer.c
parent4c0ef3b7340b55df79411b7c03a2270014fca4d0 (diff)
downloadlibgpod-689d2b23e704b256e6d5d350ec5e6a4bd131fef3.tar.gz
libgpod-689d2b23e704b256e6d5d350ec5e6a4bd131fef3.tar.xz
libgpod-689d2b23e704b256e6d5d350ec5e6a4bd131fef3.zip
Add missing static to function declarations
git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@1990 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'src/ithumb-writer.c')
-rw-r--r--src/ithumb-writer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ithumb-writer.c b/src/ithumb-writer.c
index 5594fe5..ae8630f 100644
--- a/src/ithumb-writer.c
+++ b/src/ithumb-writer.c
@@ -1032,8 +1032,8 @@ ithumb_writer_new (const char *mount_point,
return writer;
}
-gint offset_sort (gconstpointer a, gconstpointer b);
-gint offset_sort (gconstpointer a, gconstpointer b)
+static gint offset_sort (gconstpointer a, gconstpointer b);
+static gint offset_sort (gconstpointer a, gconstpointer b)
{
return (-(((Itdb_Thumb *)a)->offset - ((Itdb_Thumb *)b)->offset));
}