aboutsummaryrefslogtreecommitdiffstats
path: root/src/gwin/gwin_graph.c
diff options
context:
space:
mode:
authorinmarket <andrewh@inmarket.com.au>2018-11-10 10:45:28 +1000
committerinmarket <andrewh@inmarket.com.au>2018-11-10 10:45:28 +1000
commitd528fb218d2773c051098cd44cb6eb0eb0732be0 (patch)
treea0a16a4ac68bf1c78c69a163c0865c9a72a9fd4d /src/gwin/gwin_graph.c
parent8a9ed5195b3345635533b6150b9303abbaf5adf3 (diff)
downloaduGFX-d528fb218d2773c051098cd44cb6eb0eb0732be0.tar.gz
uGFX-d528fb218d2773c051098cd44cb6eb0eb0732be0.tar.bz2
uGFX-d528fb218d2773c051098cd44cb6eb0eb0732be0.zip
Minor fixups
Diffstat (limited to 'src/gwin/gwin_graph.c')
-rw-r--r--src/gwin/gwin_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gwin/gwin_graph.c b/src/gwin/gwin_graph.c
index 87cdff5b..13011506 100644
--- a/src/gwin/gwin_graph.c
+++ b/src/gwin/gwin_graph.c
@@ -304,7 +304,7 @@ void gwinGraphDrawPoint(GHandle gh, gCoord x, gCoord y) {
void gwinGraphDrawPoints(GHandle gh, const gPoint *points, unsigned count) {
#define gg ((GGraphObject *)gh)
unsigned i;
- const gPoint *p;
+ const gPoint *p;
if (gh->vmt != &graphVMT || !_gwinDrawStart(gh))
return;