]> git.sur5r.net Git - bacula/bacula/commitdiff
Tweak conio comment
authorKern Sibbald <kern@sibbald.com>
Mon, 28 May 2012 16:31:59 +0000 (18:31 +0200)
committerKern Sibbald <kern@sibbald.com>
Sat, 20 Apr 2013 12:50:39 +0000 (14:50 +0200)
bacula/src/console/conio.c

index eb6684b5990ab11fb5d208dfc465d123ae1b8d31..8a6ffd4e3a968eeaddd3a82197427bc27f69dd16 100755 (executable)
@@ -875,7 +875,7 @@ putline(char *newl, int newlen)
        nptr = (struct lstr *)((char *)lptr + newlen + PHDRL);
        /* Appropriate byte alignment - for Intel 2 byte, but on
           Sparc we need 8 byte alignment, so we always do 8 */
-       if (((long unsigned)nptr & 7) != 0) { /* test four byte alignment */
+       if (((long unsigned)nptr & 7) != 0) { /* test eight byte alignment */
            p = (char *)nptr;
            nptr = (struct lstr *)((((long unsigned) p) & ~7) + 8);
        }