From 9f89381fc7aca10b46c21ff906c69139125d31ee Mon Sep 17 00:00:00 2001 From: James Laird Date: Wed, 22 Nov 2006 09:37:29 -0500 Subject: [svn-r12970] Used escape character for backslash (oops!) in windows path name on UNIX. Tested on copper. --- examples/h5_elink_unix2win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/h5_elink_unix2win.c b/examples/h5_elink_unix2win.c index 447d392..499397e 100644 --- a/examples/h5_elink_unix2win.c +++ b/examples/h5_elink_unix2win.c @@ -144,7 +144,7 @@ unix2win_example() /* Create the target file. */ #ifdef WIN32 - if((fid=H5Fcreate("u2w\u2w_target.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT))<0) goto error; + if((fid=H5Fcreate("u2w\\u2w_target.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT))<0) goto error; #else if((fid=H5Fcreate("u2w/u2w_target.h5", H5F_ACC_TRUNC, H5P_DEFAULT, H5P_DEFAULT))<0) goto error; #endif -- cgit v0.12