diff options
author | Michael Stahl <mst@openoffice.org> | 2011-03-28 10:34:18 +0000 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2011-03-28 10:34:18 +0000 |
commit | bff405512c43fc473a4a9041b203560143b9f15d (patch) | |
tree | d68c0f5b8a14bf55c2d34bc47b9b84093b91f5a9 /ucb | |
parent | c4de82c9a636e4c8e91cab392e5a1a17e6ee8677 (diff) |
solaris11: gvfs: should not abort via g_error (also causes Sun C++ warning)
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/gvfs/gvfs_content.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/gvfs/gvfs_content.cxx b/ucb/source/ucp/gvfs/gvfs_content.cxx index 3b1d726f9304..666c0616ba0e 100644 --- a/ucb/source/ucp/gvfs/gvfs_content.cxx +++ b/ucb/source/ucp/gvfs/gvfs_content.cxx @@ -1177,7 +1177,7 @@ uno::Any Content::mapVFSException( const GnomeVFSResult result, sal_Bool bWrite switch (result) { case GNOME_VFS_OK: - g_error ("VFS_OK mapped to exception."); + g_warning("VFS_OK mapped to exception."); break; case GNOME_VFS_ERROR_EOF: g_warning ("VFS_EOF not handled somewhere."); |