]> git.eshelyaron.com Git - emacs.git/commitdiff
Two typos captured on OpenBSD/clang
authorManuel Giraud <manuel@ledu-giraud.fr>
Tue, 21 Jun 2022 14:52:52 +0000 (16:52 +0200)
committerEli Zaretskii <eliz@gnu.org>
Tue, 21 Jun 2022 15:46:53 +0000 (18:46 +0300)
; * src/kqueue.c (kqueue_compare_dir_list): Indent typo.
; * src/sysdep.c (system_process_attributes): Unused variable on OpenBSD.

src/kqueue.c
src/sysdep.c

index c3c4631784d6e7f86f79aed96dc7183db8bd6733..99a9434cc2ef6972baf46ac21f6db155e5ac653e 100644 (file)
@@ -159,8 +159,8 @@ kqueue_compare_dir_list (Lisp_Object watch_object)
            (watch_object, Fcons (Qwrite, Qnil), XCAR (XCDR (old_entry)), Qnil);
        /* Status change time has been changed, the file attributes
           have changed.  */
-         if (NILP (Fequal (Fnth (make_fixnum (3), old_entry),
-                           Fnth (make_fixnum (3), new_entry))))
+       if (NILP (Fequal (Fnth (make_fixnum (3), old_entry),
+                         Fnth (make_fixnum (3), new_entry))))
          kqueue_generate_event
            (watch_object, Fcons (Qattrib, Qnil),
             XCAR (XCDR (old_entry)), Qnil);
index 95295e7e6763601a37ae7742b0e3f70e771cb28e..28ab8189c364baccc2bc2b8537681deb762037f3 100644 (file)
@@ -3869,7 +3869,7 @@ system_process_attributes (Lisp_Object pid)
 Lisp_Object
 system_process_attributes (Lisp_Object pid)
 {
-  int proc_id, nentries, fscale, i;
+  int proc_id, fscale, i;
   int pagesize = getpagesize ();
   int mib[6];
   size_t len;