diff --git a/nfix.c b/nfix.c
index effab84..83450dc 100644
--- a/nfix.c
+++ b/nfix.c
@@ -3,16 +3,16 @@
 #include <ncurses.h>
 
 signed main(){
-	initscr();
+    initscr();
 
-	echo();
-	curs_set(1);
-	nocbreak();
+    echo();
+    curs_set(1);
+    nocbreak();
 
-	endwin();
+    endwin();
 
     fputs("\033[2 q", stdout);
     fflush(stdout);
 
-	return 0;
+    return 0;
 }