summaryrefslogtreecommitdiff
path: root/cocoa/plotter.m
diff options
context:
space:
mode:
Diffstat (limited to 'cocoa/plotter.m')
-rw-r--r--cocoa/plotter.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/cocoa/plotter.m b/cocoa/plotter.m
index 61f53c192..dbc9460c4 100644
--- a/cocoa/plotter.m
+++ b/cocoa/plotter.m
@@ -201,7 +201,7 @@ static bool plot_path(const float *p, unsigned int n, colour fill, float width,
if (n == 0) return true;
if (*p != PLOTTER_PATH_MOVE) {
- LOG(("Path does not start with move"));
+ LOG("Path does not start with move");
return false;
}
@@ -236,7 +236,7 @@ static bool plot_path(const float *p, unsigned int n, colour fill, float width,
break;
default:
- LOG(("Invalid path"));
+ LOG("Invalid path");
return false;
}
}