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 + + * font-method.c (do_tell): fixed function signature. + 2005-11-14 Kjartan Maraas * 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); }