config warning; fix multi-string literal problem

This commit is contained in:
Ronald G. Minnich 2003-05-05 17:48:54 +00:00
commit d8088aadc2
3 changed files with 6 additions and 8 deletions

View file

@ -12,7 +12,7 @@ southbridge via/vt82c686
superio via/vt82c686
mainboardinit cpu/p6/earlymtrr.inc
option ENABLE_FIXED_AND_VARIABLE_MTRRS
option ENABLE_FIXED_AND_VARIABLE_MTRRS=1
option SUPERIO_DEVFN=0x88
object mainboard.o
keyboard pc80

View file

@ -1,4 +1,4 @@
option SIS730
option SIS730=1
option SMA_SIZE=0xA0
raminit northsouthbridge/sis/730/raminit.inc

View file

@ -783,8 +783,8 @@ find_match ( struct ucl_compress *c, struct ucl_swd *s,
break;
if (in != m)
if (memcmp(in,ip,c->m_len+1) == 0)
printf("%p %p %p
%5d\n",in,ip,m,c->m_len);
printf("%p %p %p%5d\n",
in,ip,m,c->m_len);
in++;
}
@ -1445,11 +1445,9 @@ int main(int argc, char *argv[])
rewind(infile = f);
}
else if (argc != 4) {
Fprintf((stderr, "'lzhuf e file1 file2' encodes file1 into
file2.\n"
Fprintf((stderr, "'lzhuf e file1 file2' encodes file1 into file2.\n"
"'lzhuf d file2 file1' decodes file2 into
file1.\n"));
"'lzhuf d file2 file1' decodes file2 into file1.\n"));
return EXIT_FAILURE;
}