Commented out a printf() and cleaned up some mallocs.

This commit is contained in:
Ryan C. Gordon 2005-03-14 11:47:42 +00:00
parent 2211ea7240
commit c799a14c70
1 changed files with 3 additions and 3 deletions

View File

@ -174,7 +174,7 @@ static int cmd_mount(char *args)
} /* else */
appending = atoi(ptr + 1);
printf("[%s], [%s], [%d]\n", args, mntpoint, appending);
/*printf("[%s], [%s], [%d]\n", args, mntpoint, appending);*/
if (PHYSFS_mount(args, mntpoint, appending))
printf("Successful.\n");
@ -1044,7 +1044,7 @@ static int process_command(char *complete_cmd)
return(0);
} /* if */
cmd_copy = malloc(strlen(complete_cmd) + 1);
cmd_copy = (char *) malloc(strlen(complete_cmd) + 1);
if (cmd_copy == NULL)
{
printf("\n\n\nOUT OF MEMORY!\n\n\n");
@ -1175,7 +1175,7 @@ int main(int argc, char **argv)
buf = readline("> ");
#else
int i;
buf = malloc(512);
buf = (char *) malloc(512);
memset(buf, '\0', 512);
printf("> ");
for (i = 0; i < 511; i++)