Chameleon

Chameleon Commit Details

Date:2015-08-19 22:57:31 (8 years 8 months ago)
Author:ErmaC
Commit:2753
Parents: 2752
Message:Typo
Changes:
M/branches/ErmaC/Enoch/i386/boot2/options.c
M/branches/ErmaC/Enoch/i386/boot2/boot.c

File differences

branches/ErmaC/Enoch/i386/boot2/boot.c
312312
313313
314314
315
315
316316
317317
318318
prev_time = time;
}
}
verbose("Kernel Cache file path (Mac OS X 10.6.X): %s\n", kernelCachePath);
verbose("Kernel Cache file path (Mac OS X 10.6): %s\n", kernelCachePath);
}
closedir(cacheDir);
}
branches/ErmaC/Enoch/i386/boot2/options.c
389389
390390
391391
392
392
393393
394
394
395395
396
397
398
399
396
397
398
399
400
401
402
403
400404
401
405
402406
403407
404408
......
665669
666670
667671
668
672
669673
670674
671675
......
16591663
16601664
16611665
1666
1667
1668
1669
1670
1671
1672
16621673
16631674
16641675
static int gMenuStart;
static int gMenuEnd;
static void printMenuItem( const MenuItem * item, int highlight )
static void printMenuItem( const MenuItem *item, int highlight )
{
printf(" ");
printf(" ");
if ( highlight )
putca(' ', 0x70, strlen(item->name) + 4);
else
putca(' ', 0x07, 40);
if ( highlight )
{
putca(' ', 0x70, strlen(item->name) + 4);
}
else
{
putca(' ', 0x07, 40);
}
printf(" %40s\n", item->name);
printf(" %40s\n", item->name);
}
//==========================================================================
//==========================================================================
static const char * extractKernelName( char ** cpp )
static const char *extractKernelName( char ** cpp )
{
char * kn = *cpp;
char * cp = *cpp;
size = MAX_TEXT_FILE_SIZE;
}
buf = malloc(size);
if (!buf)
{
printf("Couldn't allocate memory for the buf in showTextFile\n");
return;
}
read(fd, buf, size);
close(fd);
showTextBuffer(buf, size);

Archive Download the corresponding diff file

Revision: 2753