Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-arch committed Apr 17, 2024
1 parent c6e39d1 commit 90f415c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xdu.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
* 1. When computing disk usage (not apparent sizes).
* 2. If apparent sizes, only for symlinks and regular files.
* NOTE: Here we add shared memory object and typed memory object just to
* match the check made by du(1). These objects are not implmented on most
* match the check made by du(1). These objects are not implemented on most
* systems, but this might change in the future. */
#define USABLE_ST_SIZE(s) (conf.apparent_size != 1 || S_ISLNK((s)->st_mode) \
|| S_ISREG((s)->st_mode) || S_TYPEISSHM((s)) || S_TYPEISTMO((s)))
Expand Down

0 comments on commit 90f415c

Please sign in to comment.