diff options
author | pav <pav@FreeBSD.org> | 2005-01-08 21:41:32 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-01-08 21:41:32 +0000 |
commit | 4e5d4b09cd7de172e65cd0747d9981e136e70254 (patch) | |
tree | 02878d06aa27b22196cf04c608c0ffc56b724c32 /palm/synce-gnomevfs/files | |
parent | 154fcb6caaadce8e33e2a8a7cae528d48480797a (diff) | |
download | FreeBSD-ports-4e5d4b09cd7de172e65cd0747d9981e136e70254.zip FreeBSD-ports-4e5d4b09cd7de172e65cd0747d9981e136e70254.tar.gz |
- Fix build on 4.x
Diffstat (limited to 'palm/synce-gnomevfs/files')
-rw-r--r-- | palm/synce-gnomevfs/files/patch-src-libsyncevfs.c | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/palm/synce-gnomevfs/files/patch-src-libsyncevfs.c b/palm/synce-gnomevfs/files/patch-src-libsyncevfs.c new file mode 100644 index 0000000..6995549 --- /dev/null +++ b/palm/synce-gnomevfs/files/patch-src-libsyncevfs.c @@ -0,0 +1,26 @@ +--- src/libsyncevfs.c.orig Sun Aug 22 21:06:29 2004 ++++ src/libsyncevfs.c Sat Jan 8 18:40:37 2005 +@@ -126,8 +126,9 @@ + { + if (!initialized_rapi) + { ++ HRESULT hr; + MUTEX_LOCK (mutex); +- HRESULT hr = CeRapiInit(); ++ hr = CeRapiInit(); + MUTEX_UNLOCK (mutex); + + if (FAILED(hr)) +@@ -145,9 +146,10 @@ + + static int get_location(GnomeVFSURI *uri, gchar **location)/*{{{*/ + { +- int result = INDEX_INVALID; +- *location = NULL; ++ int result; + gchar **path = NULL; ++ *location = NULL; ++ result = INDEX_INVALID; + + path = g_strsplit(gnome_vfs_unescape_string(gnome_vfs_uri_get_path(uri),"\\"), "/", 0); + |