]> code.delx.au - gnu-emacs/blobdiff - src/xrdb.c
(x_dispatch_event): Don't pass uninitialized
[gnu-emacs] / src / xrdb.c
index e51a774dc477d01764ba660396ad905ba8c2d808..87c8f4b285d09e7339f33f98370f44f8cbf666ee 100644 (file)
@@ -323,13 +323,13 @@ gethomedir ()
 
 
 static int
-file_p (path)
-     char *path;
+file_p (filename)
+     char *filename;
 {
   struct stat status;
 
-  return (access (path, 4) == 0                        /* exists and is readable */
-         && stat (path, &status) == 0          /* get the status */
+  return (access (filename, 4) == 0             /* exists and is readable */
+         && stat (filename, &status) == 0      /* get the status */
          && (S_ISDIR (status.st_mode)) == 0);  /* not a directory */
 }