Remove debug output

This commit is contained in:
Ingo Weinhold
2011-11-25 06:18:46 +01:00
parent 7395bf8a76
commit 93fc03aa52
-2
View File
@@ -366,7 +366,6 @@ command_extract(int argc, const char* const* argv)
StandardErrorOutput errorOutput;
BPackageReader packageReader(&errorOutput);
status_t error = packageReader.Init(packageFileName);
printf("Init(): %s\n", strerror(error));
if (error != B_OK)
return 1;
@@ -386,7 +385,6 @@ printf("Init(): %s\n", strerror(error));
return 1;
error = packageReader.ParseContent(&handler);
printf("ParseContent(): %s\n", strerror(error));
if (error != B_OK)
return 1;