From: Yu Watanabe Date: Thu, 14 Mar 2024 08:37:48 +0000 (+0900) Subject: stat-util: fix typo X-Git-Tag: v256-rc1~534 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f03caa0d3e3bd1b8c552e338236726b3d979ad0e;p=thirdparty%2Fsystemd.git stat-util: fix typo Follow-up for 7cff2b79f00e82c85d0773e8cb4074c59abc6f43. --- diff --git a/src/basic/stat-util.c b/src/basic/stat-util.c index ab45eda0edc..4040b172268 100644 --- a/src/basic/stat-util.c +++ b/src/basic/stat-util.c @@ -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; }