NotLaunchフラグが逆転していたので修正

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@686 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
yoshida_teruhisa 2008-02-18 04:26:10 +00:00
parent 985a378d2c
commit f88a1870de

View File

@ -35,7 +35,7 @@ int main(int argc, char *argv[])
int n; int n;
int read_size; int read_size;
BOOL isSystem = FALSE; BOOL isSystem = FALSE;
BOOL isLaunch = TRUE; BOOL isLaunch = FALSE;
unsigned char file_read_buffer[FILE_READ_BUFFER_LENGTH]; unsigned char file_read_buffer[FILE_READ_BUFFER_LENGTH];
while ((n = getopt(argc, argv, "hiocsl")) != -1) { while ((n = getopt(argc, argv, "hiocsl")) != -1) {
@ -74,7 +74,7 @@ int main(int argc, char *argv[])
printf("system file\n"); printf("system file\n");
break; break;
case 'l': case 'l':
isLaunch = FALSE; isLaunch = TRUE;
printf("Not Launch file\n"); printf("Not Launch file\n");
break; break;
default: default: