]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
stat-util: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 14 Mar 2024 08:37:48 +0000 (17:37 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 14 Mar 2024 08:37:50 +0000 (17:37 +0900)
Follow-up for 7cff2b79f00e82c85d0773e8cb4074c59abc6f43.

src/basic/stat-util.c

index ab45eda0edcc8747cda98df27c321aa4b2817d4b..4040b172268f8b02f7a506a843de2877dc6c81d0 100644 (file)
@@ -535,7 +535,7 @@ const char* inode_type_to_string(mode_t m) {
                 return "sock";
         }
 
-        /* Note anonmyous inodes in the kernel will have a zero type. Hence fstat() of an eventfd() will
+        /* Note anonymous inodes in the kernel will have a zero type. Hence fstat() of an eventfd() will
          * return an .st_mode where we'll return NULL here! */
         return NULL;
 }