]> git.lyx.org Git - lyx.git/blobdiff - src/support/path.C
MacOSX compile fix.
[lyx.git] / src / support / path.C
index 59593145edf593f07628cd740ff3b01683a8c32e..71ab4b6b87acdb8cba67f2f120d43e34f25862d7 100644 (file)
@@ -28,8 +28,10 @@ Path::Path(string const & path)
 {
        if (!path.empty()) {
                pushedDir_ = getcwd();
-               if (pushedDir_.empty() || chdir(path))
-                       /* FIXME: throw */;
+
+               if (pushedDir_.empty() || chdir(path)) {
+                       /* FIXME: throw */
+               }
        } else {
                popped_ = true;
        }