]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/console/conio.c
Print seconds in schedule time as noted in bug #1854
[bacula/bacula] / bacula / src / console / conio.c
index c04779667c5aa4ebbe7470f25399191278e9a6b4..8165444f2c61f6bfda978a667b83c986e4546000 100755 (executable)
@@ -453,9 +453,8 @@ input_char()
     }
     /* if we got a screen size escape sequence, read height, width */
     if (c == F_SCRSIZ) {
-       int y, x;
-       y = t_gnc() - 0x20;        /* y */
-       x = t_gnc() - 0x20;        /* x */
+       t_gnc();   /*  - 0x20 = y */
+       t_gnc();   /*  - 0x20 = x */
        c = input_char();
     }
     return c;