summaryrefslogtreecommitdiff
path: root/beos/fetch_rsrc.cpp
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2012-11-25 20:00:27 +0100
committerFrançois Revol <revol@free.fr>2012-11-25 20:00:27 +0100
commit17e19b283f8cf0e2772e61ac1e11f9919b03489b (patch)
tree741be69eb82eb628598870be67f5b53ad7c380db /beos/fetch_rsrc.cpp
parent38b17e11123d7da014d6c53c28f3d181a15517eb (diff)
downloadnetsurf-17e19b283f8cf0e2772e61ac1e11f9919b03489b.tar.gz
netsurf-17e19b283f8cf0e2772e61ac1e11f9919b03489b.tar.bz2
beos: Silence debug output
Either comment them or change to LOG() calls.
Diffstat (limited to 'beos/fetch_rsrc.cpp')
-rw-r--r--beos/fetch_rsrc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/beos/fetch_rsrc.cpp b/beos/fetch_rsrc.cpp
index d841a1d3b..f7c99d7c4 100644
--- a/beos/fetch_rsrc.cpp
+++ b/beos/fetch_rsrc.cpp
@@ -198,11 +198,11 @@ static bool fetch_rsrc_process(struct fetch_rsrc_context *c)
uint8 c1, c2, c3, c4;
if (sscanf(params, "%c%c%c%c", &c1, &c2, &c3, &c4) > 3) {
type = c1 << 24 | c2 << 16 | c3 << 8 | c4;
- printf("type:%4.4s\n", &type);
+ LOG(("fetch_rsrc: type:%4.4s\n", &type));
}
}
- fprintf(stderr, "fetch_rsrc: 0x%08lx, %ld, '%s'\n", type, id, c->name);
+ LOG(("fetch_rsrc: 0x%08lx, %ld, '%s'\n", type, id, c->name));
bool found;
if (id)
@@ -334,7 +334,7 @@ static int find_app_resources()
char path[B_PATH_NAME_LENGTH];
if (nsbeos_find_app_path(path) < B_OK)
return B_ERROR;
-//fprintf(stderr, "loading resources from '%s'\n", path);
+ //fprintf(stderr, "loading resources from '%s'\n", path);
BFile file(path, B_READ_ONLY);
if (file.InitCheck() < 0)