Tidy up indentation

This commit is contained in:
Jakub Wilk 2023-04-24 09:18:27 +02:00 committed by Albert S
parent 7323492836
commit 24bd0097b2
1 changed files with 20 additions and 19 deletions

View File

@ -36,7 +36,8 @@ size_t pwbufsize = 0;
size_t pwindex = 0;
int current_mode = MODE_ECHO;
void enter_raw_mode() {
void enter_raw_mode()
{
struct termios raw = saved_termios;
raw.c_lflag &= ~(ECHO | ICANON);
if(tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw) != 0)