cmdline (merge-intel): fix whitespaces
[libcmdline.git] / src / lib / cmdline_vt100.c
index 1245cd0..59ab1f4 100644 (file)
@@ -71,7 +71,7 @@ match_command(char *buf, unsigned int size)
 {
        const char *cmd;
        unsigned int i = 0;
-       
+
        for (i=0 ; i<sizeof(cmdline_vt100_commands)/sizeof(const char *) ; i++) {
                cmd = *(cmdline_vt100_commands + i);
 
@@ -127,14 +127,14 @@ vt100_parser(struct cmdline_vt100 *vt, char ch)
                        goto match_command;
                }
                break;
-               
+
        default:
                vt->bufpos = 0;
                break;
        }
 
        return -2;
-       
+
  match_command:
        return match_command(vt->buf, size);
 }