summaryrefslogtreecommitdiff
path: root/beos/fetch_rsrc.cpp
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2016-05-04 21:19:43 +0100
committerVincent Sanders <vince@kyllikki.org>2016-05-04 21:19:43 +0100
commit09e90a4cea9e055a0c0aba3be166d8f937ea6669 (patch)
tree974af3202d74ec44dd67d85f3596f6f96b901455 /beos/fetch_rsrc.cpp
parent42baec60cc105882ca982283af5feef2e1275dac (diff)
downloadnetsurf-09e90a4cea9e055a0c0aba3be166d8f937ea6669.tar.gz
netsurf-09e90a4cea9e055a0c0aba3be166d8f937ea6669.tar.bz2
reduce beos frontend usage of plotter API
Diffstat (limited to 'beos/fetch_rsrc.cpp')
-rw-r--r--beos/fetch_rsrc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/beos/fetch_rsrc.cpp b/beos/fetch_rsrc.cpp
index f696f18db..b771f7b2d 100644
--- a/beos/fetch_rsrc.cpp
+++ b/beos/fetch_rsrc.cpp
@@ -199,7 +199,7 @@ 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;
- LOG("fetch_rsrc: type:%4.4s\n", &type);
+ LOG("fetch_rsrc: type:%4.4s\n", (char *)&type);
}
}