summaryrefslogtreecommitdiff
path: root/sys/src/cmd/hjfs/buf.c
diff options
context:
space:
mode:
authorspew <devnull@localhost>2017-03-27 21:38:12 -0500
committerspew <devnull@localhost>2017-03-27 21:38:12 -0500
commit3103efb8b06503825f3d14c5c5758a431794e4b3 (patch)
tree609c12ef8ac68a09b3ddd4a1efcf2720e3abc28a /sys/src/cmd/hjfs/buf.c
parent2e64925b91b4fc19d770dc685c3182121ce6e551 (diff)
hjfs: simplify dprinting
Diffstat (limited to 'sys/src/cmd/hjfs/buf.c')
-rw-r--r--sys/src/cmd/hjfs/buf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/hjfs/buf.c b/sys/src/cmd/hjfs/buf.c
index 1850bf6db..b8eca9bdf 100644
--- a/sys/src/cmd/hjfs/buf.c
+++ b/sys/src/cmd/hjfs/buf.c
@@ -274,7 +274,7 @@ getbuf(Dev *d, uvlong off, int type, int nodata)
if(nodata)
b->type = type;
if(b->type != type && type != -1){
- dprint("hjfs: type mismatch, dev %s, block %lld, got %T, want %T, caller %#p\n",
+ dprint("type mismatch, dev %s, block %lld, got %T, want %T, caller %#p\n",
d->name, off, b->type, type, getcallerpc(&d));
werrstr("phase error -- type mismatch");
putbuf(b);