]> git.droids-corp.org - aversive.git/blobdiff - projects/microb2010/tests/hostsim/cmdline.c
code 2010
[aversive.git] / projects / microb2010 / tests / hostsim / cmdline.c
index 77392ec9734745cfd83f6e0b7728dd043fa8feb0..edf7601e7f7283fa074ab42fc363549011e4e9db 100644 (file)
@@ -115,7 +115,7 @@ void mylog(struct error * e, ...)
        if (e->severity > ERROR_SEVERITY_ERROR) {
                if (gen.log_level < e->severity)
                        return;
-               
+
                for (i=0; i<NB_LOGS+1; i++)
                        if (gen.logs[i] == e->err_num)
                                break;
@@ -126,12 +126,12 @@ void mylog(struct error * e, ...)
        va_start(ap, e);
        tv = time_get_time();
        printf_P(PSTR("%d.%.3d: "), (int)tv.s, (int)(tv.us/1000UL));
-       
+
        printf_P(PSTR("(%d,%d,%d) "),
                 position_get_x_s16(&mainboard.pos),
                 position_get_y_s16(&mainboard.pos),
                 position_get_a_deg_s16(&mainboard.pos));
-       
+
        vfprintf_P(stdout, e->text, ap);
        printf_P(PSTR("\r\n"));
        va_end(ap);