fixed function signature.

2005-11-14  Rodrigo Moya <rodrigo@novell.com>

	* font-method.c (do_tell): fixed function signature.
This commit is contained in:
Rodrigo Moya 2005-11-14 15:29:27 +00:00 committed by Rodrigo Moya
parent 67269d543a
commit 3b36fc2f4b
2 changed files with 5 additions and 1 deletions

View file

@ -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> 2005-11-14 Kjartan Maraas <kmaraas@gnome.org>
* font-method.c: (get_pango_name), (do_open): * font-method.c: (get_pango_name), (do_open):

View file

@ -518,7 +518,7 @@ do_seek(GnomeVFSMethod *method,
static GnomeVFSResult static GnomeVFSResult
do_tell(GnomeVFSMethod *method, do_tell(GnomeVFSMethod *method,
GnomeVFSMethodHandle *method_handle, GnomeVFSMethodHandle *method_handle,
GnomeVFSFileOffset *offset_return) GnomeVFSFileSize *offset_return)
{ {
return gnome_vfs_tell((GnomeVFSHandle *)method_handle, offset_return); return gnome_vfs_tell((GnomeVFSHandle *)method_handle, offset_return);
} }