Skip to content

Commit 0e4bad8

Browse files
committed
Adjust indent [ci skip]
1 parent 13d14c6 commit 0e4bad8

1 file changed

Lines changed: 24 additions & 24 deletions

File tree

dir.c

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -933,37 +933,37 @@ dir_yield_with_type(VALUE arg, VALUE path, unsigned char dtype)
933933
VALUE type;
934934
switch (dtype) {
935935
#ifdef DT_BLK
936-
case DT_BLK:
937-
type = sym_block_device;
938-
break;
936+
case DT_BLK:
937+
type = sym_block_device;
938+
break;
939939
#endif
940940
#ifdef DT_CHR
941-
case DT_CHR:
942-
type = sym_character_device;
943-
break;
941+
case DT_CHR:
942+
type = sym_character_device;
943+
break;
944944
#endif
945-
case DT_DIR:
946-
type = sym_directory;
947-
break;
945+
case DT_DIR:
946+
type = sym_directory;
947+
break;
948948
#ifdef DT_FIFO
949-
case DT_FIFO:
950-
type = sym_fifo;
951-
break;
949+
case DT_FIFO:
950+
type = sym_fifo;
951+
break;
952952
#endif
953-
case DT_LNK:
954-
type = sym_link;
955-
break;
956-
case DT_REG:
957-
type = sym_file;
958-
break;
953+
case DT_LNK:
954+
type = sym_link;
955+
break;
956+
case DT_REG:
957+
type = sym_file;
958+
break;
959959
#ifdef DT_SOCK
960-
case DT_SOCK:
961-
type = sym_socket;
962-
break;
960+
case DT_SOCK:
961+
type = sym_socket;
962+
break;
963963
#endif
964-
default:
965-
type = sym_unknown;
966-
break;
964+
default:
965+
type = sym_unknown;
966+
break;
967967
}
968968

969969
if (NIL_P(arg)) {

0 commit comments

Comments
 (0)