Consistently spell "file name" and "file system" as two words.
[pintos-anon] / src / tests / filesys / extended / dir-mk-vine.c
index 7ac18a143543908319146376705392c75a74cc5e..444727a0ca58a074456fd89c045332fc7529e608 100644 (file)
@@ -10,7 +10,7 @@
 void
 test_main (void) 
 {
-  const char *filename = "/0/1/2/3/4/5/6/7/8/9/test";
+  const char *file_name = "/0/1/2/3/4/5/6/7/8/9/test";
   char dir[2];
   
   dir[1] = '\0';
@@ -21,6 +21,6 @@ test_main (void)
     }
   CHECK (create ("test", 512), "create \"test\"");
   CHECK (chdir ("/"), "chdir \"/\"");
-  CHECK (open (filename) > 1, "open \"%s\"", filename);
+  CHECK (open (file_name) > 1, "open \"%s\"", file_name);
 }