Assorted spelling fixes.

diff --git a/dlls/kernel/process.c b/dlls/kernel/process.c
index e4e379f..1477347 100644
--- a/dlls/kernel/process.c
+++ b/dlls/kernel/process.c
@@ -608,7 +608,7 @@
                 if (*a==' ' || *a=='\t') {
                     has_space=1;
                 } else if (*a=='"') {
-                    /* doubling of '\' preceeding a '"',
+                    /* doubling of '\' preceding a '"',
                      * plus escaping of said '"'
                      */
                     len+=2*bcount+1;
@@ -667,7 +667,7 @@
                     if (*a=='"') {
                         int i;
 
-                        /* Double all the '\\' preceeding this '"', plus one */
+                        /* Double all the '\\' preceding this '"', plus one */
                         for (i=0;i<=bcount;i++)
                             *p++='\\';
                         *p++='"';
diff --git a/dlls/kernel/tests/file.c b/dlls/kernel/tests/file.c
index e4f8c38..e54f32a 100644
--- a/dlls/kernel/tests/file.c
+++ b/dlls/kernel/tests/file.c
@@ -583,8 +583,9 @@
     ok(ret == sizeof(prefix), "destination file has wrong size %ld\n", ret);
 
     /* make sure that destination has the same filetime */
+    ok(ret = GetFileTime(hfile, NULL, NULL, &ft1), "GetFileTime error %ld\n", GetLastError());
     ok(ret = GetFileTime(hfile, NULL, NULL, &ft2), "GetFileTime error %ld\n", GetLastError());
-    ok(CompareFileTime(&ft1, &ft2) == 0, "destination file has wrong filetime");
+    ok(CompareFileTime(&ft1, &ft2) == 0, "destination file has wrong filetime\n");
 
     SetLastError(0xdeadbeef);
     ret = CopyFileA(source, dest, FALSE);