gnome-vfs r5472 - in trunk: . libgnomevfs modules
- From: lucasr svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-vfs r5472 - in trunk: . libgnomevfs modules
- Date: Wed, 14 May 2008 16:44:14 +0100 (BST)
Author: lucasr
Date: Wed May 14 15:44:14 2008
New Revision: 5472
URL: http://svn.gnome.org/viewvc/gnome-vfs?rev=5472&view=rev
Log:
2008-05-14 Lucas Rocha <lucasr gnome org>
* libgnomevfs/gnome-vfs-volume-ops.c, modules/sftp-method.c: fixed
two build warnings.
Modified:
trunk/ChangeLog
trunk/libgnomevfs/gnome-vfs-volume-ops.c
trunk/modules/sftp-method.c
Modified: trunk/libgnomevfs/gnome-vfs-volume-ops.c
==============================================================================
--- trunk/libgnomevfs/gnome-vfs-volume-ops.c (original)
+++ trunk/libgnomevfs/gnome-vfs-volume-ops.c Wed May 14 15:44:14 2008
@@ -980,7 +980,7 @@
if (success) {
(*callback) (success, NULL, NULL, user_data);
} else {
- (*callback) (success, _("Unable to unmount connected server"), detailed_error, user_data);
+ (*callback) (success, (char *) _("Unable to unmount connected server"), detailed_error, user_data);
}
g_free (detailed_error);
}
Modified: trunk/modules/sftp-method.c
==============================================================================
--- trunk/modules/sftp-method.c (original)
+++ trunk/modules/sftp-method.c Wed May 14 15:44:14 2008
@@ -1430,8 +1430,8 @@
g_free (fingerprint);
in_args.choices = choices;
- in_args.choices[0] = _("Log In Anyway");
- in_args.choices[1] = _("Cancel Login");
+ in_args.choices[0] = (char *) _("Log In Anyway");
+ in_args.choices[1] = (char *) _("Cancel Login");
in_args.choices[2] = NULL;
invoked = gnome_vfs_module_callback_invoke
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]