From: Kern Sibbald Date: Mon, 28 May 2012 16:31:59 +0000 (+0200) Subject: Tweak conio comment X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=8fa69b8767f9322844ceb4b782a1ac5279b69bbb;p=bacula%2Fbacula Tweak conio comment --- diff --git a/bacula/src/console/conio.c b/bacula/src/console/conio.c index eb6684b599..8a6ffd4e3a 100755 --- a/bacula/src/console/conio.c +++ b/bacula/src/console/conio.c @@ -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); }