summaryrefslogtreecommitdiff
path: root/beos/plotters.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'beos/plotters.cpp')
-rw-r--r--beos/plotters.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/beos/plotters.cpp b/beos/plotters.cpp
index 81d0e10e7..f63d7343e 100644
--- a/beos/plotters.cpp
+++ b/beos/plotters.cpp
@@ -484,7 +484,7 @@ bool nsbeos_plot_path(const float *p, unsigned int n, colour fill, float width,
return true;
if (p[0] != PLOTTER_PATH_MOVE) {
- LOG(("path doesn't start with a move"));
+ LOG("path doesn't start with a move");
return false;
}
@@ -511,7 +511,7 @@ bool nsbeos_plot_path(const float *p, unsigned int n, colour fill, float width,
shape.BezierTo(pt);
i += 7;
} else {
- LOG(("bad path command %f", p[i]));
+ LOG("bad path command %f", p[i]);
return false;
}
}