diff options
| author | Thomas Voss <thomas.voss@humanwave.nl> | 2026-03-19 16:36:38 +0100 |
|---|---|---|
| committer | Thomas Voss <thomas.voss@humanwave.nl> | 2026-03-19 16:36:38 +0100 |
| commit | 3b64f3818a755afac009f14c4e12551f159ca632 (patch) | |
| tree | 3a3a1aaead4fa3b4c840a3ea8d9c5430464391ba /src | |
| parent | a44a33f8a84271d81e6416a2ab1e118b7a576b23 (diff) | |
Use tabs
Diffstat (limited to 'src')
| -rw-r--r-- | src/work.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -98,9 +98,9 @@ process_file(const char *locl_filename, unsigned char **locl_buf) } /* We need to assert for st.st_size > 0 as some files (such as various files - under /proc on Linux) are generated ‘on the fly’ and will report a - filesize of 0. Despite being regular files, these files need to be - treated as if they are special. */ + under /proc on Linux) are generated ‘on the fly’ and will report a + filesize of 0. Despite being regular files, these files need to be + treated as if they are special. */ if (S_ISREG(st.st_mode) && st.st_size > 0) { #if __linux__ (void)readahead(fd, 0, st.st_size); |