소스 검색

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

Ryan C. Gordon 21 년 전
부모
커밋
c799a14c70
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      test/test_physfs.c

+ 3 - 3
test/test_physfs.c

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