summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@novell.com>2005-11-14 15:31:06 +0000
committerRodrigo Moya <rodrigo@src.gnome.org>2005-11-14 15:31:06 +0000
commitf2c8ebe3a827e81d49c0d28c80b6c979a4ccc022 (patch)
treedd77f68e5ca180ffbb8753f1f3c5d3980eb027b0
parent625a643f698322b7b4168550d992f15503f00632 (diff)
downloadgnome-control-center-f2c8ebe3a827e81d49c0d28c80b6c979a4ccc022.tar.gz
fixed function signature.
2005-11-14 Rodrigo Moya <rodrigo@novell.com> * font-method.c (do_tell): fixed function signature.
-rw-r--r--vfs-methods/fontilus/ChangeLog4
-rw-r--r--vfs-methods/fontilus/font-method.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/vfs-methods/fontilus/ChangeLog b/vfs-methods/fontilus/ChangeLog
index e28137f20..d72e4f731 100644
--- a/vfs-methods/fontilus/ChangeLog
+++ b/vfs-methods/fontilus/ChangeLog
@@ -1,3 +1,7 @@
+2005-11-14 Rodrigo Moya <rodrigo@novell.com>
+
+ * font-method.c (do_tell): fixed function signature.
+
2005-11-14 Kjartan Maraas <kmaraas@gnome.org>
* font-method.c: (get_pango_name), (do_open):
diff --git a/vfs-methods/fontilus/font-method.c b/vfs-methods/fontilus/font-method.c
index cea0b783c..20ae47217 100644
--- a/vfs-methods/fontilus/font-method.c
+++ b/vfs-methods/fontilus/font-method.c
@@ -518,7 +518,7 @@ do_seek(GnomeVFSMethod *method,
static GnomeVFSResult
do_tell(GnomeVFSMethod *method,
GnomeVFSMethodHandle *method_handle,
- GnomeVFSFileOffset *offset_return)
+ GnomeVFSFileSize *offset_return)
{
return gnome_vfs_tell((GnomeVFSHandle *)method_handle, offset_return);
}