Merge branch 'master' of git.piment-noir.org:TP_AL_C
[TP_AL_C.git] / lexer / lexical_analyzer.c
index 6f995ba1c414b209d7603d8296a0b8e5821a8a8e..56415a01a914f73c8ee3355fada66416d6f10ead 100644 (file)
@@ -201,13 +201,13 @@ FIN:
 error:
     if (tokenType == MOT || tokenType == MOTCLE) {
         fwprintf(stderr, L"%s error with token type: %s and value: %ls\n",
-                  __func__,
-                  tokenTypestr[tokenType],
-                  token[tokenFound].value);
+                 __func__,
+                 tokenTypestr[tokenType],
+                 token[tokenFound].value);
     } else {
         fwprintf(stderr, L"%s error with token type: %s\n",
-                  __func__,
-                  tokenTypestr[tokenType]);
+                 __func__,
+                 tokenTypestr[tokenType]);
     }
     fflush(stderr);
     tokenType = FIN;