From 8fa69b8767f9322844ceb4b782a1ac5279b69bbb Mon Sep 17 00:00:00 2001 From: Kern Sibbald Date: Mon, 28 May 2012 18:31:59 +0200 Subject: [PATCH] Tweak conio comment --- bacula/src/console/conio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5