summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2026-02-13 16:11:46 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2026-02-13 16:15:43 +0900
commit0e4bad888e605d424b9222ae0ca43f85c1634e5e (patch)
tree0595118715ba5d2b000981d826d9dd322491b78a
parent13d14c6a9cbb7b9dca7e06b8ccd10bf4c47520bb (diff)
Adjust indent [ci skip]
-rw-r--r--dir.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/dir.c b/dir.c
index fc2e6b7715..5cf5625432 100644
--- a/dir.c
+++ b/dir.c
@@ -933,37 +933,37 @@ dir_yield_with_type(VALUE arg, VALUE path, unsigned char dtype)
VALUE type;
switch (dtype) {
#ifdef DT_BLK
- case DT_BLK:
- type = sym_block_device;
- break;
+ case DT_BLK:
+ type = sym_block_device;
+ break;
#endif
#ifdef DT_CHR
- case DT_CHR:
- type = sym_character_device;
- break;
+ case DT_CHR:
+ type = sym_character_device;
+ break;
#endif
- case DT_DIR:
- type = sym_directory;
- break;
+ case DT_DIR:
+ type = sym_directory;
+ break;
#ifdef DT_FIFO
- case DT_FIFO:
- type = sym_fifo;
- break;
+ case DT_FIFO:
+ type = sym_fifo;
+ break;
#endif
- case DT_LNK:
- type = sym_link;
- break;
- case DT_REG:
- type = sym_file;
- break;
+ case DT_LNK:
+ type = sym_link;
+ break;
+ case DT_REG:
+ type = sym_file;
+ break;
#ifdef DT_SOCK
- case DT_SOCK:
- type = sym_socket;
- break;
+ case DT_SOCK:
+ type = sym_socket;
+ break;
#endif
- default:
- type = sym_unknown;
- break;
+ default:
+ type = sym_unknown;
+ break;
}
if (NIL_P(arg)) {