On Thu, 28 Aug 2003 [EMAIL PROTECTED] wrote:

> (See attached file: patch_splitpath)

+  if (swapSlashes && dir) {
+  /* convert backslashes back to slashes */
+         for (ptr = (char*)dir; *ptr; ++ptr) {
+                 if ('\\' == *ptr) {
+                         *ptr = '/';
+                 }
+         }
+
+  }

Can you please try to use the same formatting style 
(indentation & bracket placement) as the one in the
rest of the file? Otherwise the file becomes hard
to read if we switch between the styles too freely.

-- 
Dimi.


Reply via email to