OSDN Git Service

*** empty log message ***
authorarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sun, 21 Jul 2002 11:21:31 +0000 (11:21 +0000)
committerarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sun, 21 Jul 2002 11:21:31 +0000 (11:21 +0000)
git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/lha/lha/trunk@395 6a8cc165-1e22-0410-a132-eb4e3f353aba

src/lhext.c

index bc49b9a..088313c 100644 (file)
@@ -117,13 +117,13 @@ make_parent_path(name)
 
 #if defined __MINGW32__
     if (mkdir(path) < 0) {      /* try again */
-               error("Cannot make directory", path);
+        error("Cannot make directory \"%s\"", path);
         return FALSE;
     }
 #else
        if (mkdir(path, 0777) < 0) {    /* try again */
-               error("Cannot make directory", path);
-               return FALSE;
+        error("Cannot make directory \"%s\"", path);
+        return FALSE;
        }
 #endif