summaryrefslogtreecommitdiff
path: root/nuttx/graphics/nxglib/nxglib_vectsubtract.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/graphics/nxglib/nxglib_vectsubtract.c')
-rw-r--r--nuttx/graphics/nxglib/nxglib_vectsubtract.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/nuttx/graphics/nxglib/nxglib_vectsubtract.c b/nuttx/graphics/nxglib/nxglib_vectsubtract.c
index 03b7ddc41..22ebcaa61 100644
--- a/nuttx/graphics/nxglib/nxglib_vectsubtract.c
+++ b/nuttx/graphics/nxglib/nxglib_vectsubtract.c
@@ -68,16 +68,16 @@
****************************************************************************/
/****************************************************************************
- * Name: nxgl_vectorsubtract
+ * Name: nxgl_vectsubtract
*
* Description:
* Add subtract vector v2 from vector v1 and return the result in vector dest
*
****************************************************************************/
-void nxgl_vectorsubtract(FAR struct nxgl_point_s *dest,
- FAR const struct nxgl_point_s *v1,
- FAR const struct nxgl_point_s *v2)
+void nxgl_vectsubtract(FAR struct nxgl_point_s *dest,
+ FAR const struct nxgl_point_s *v1,
+ FAR const struct nxgl_point_s *v2)
{
dest->x = v1->x - v2->x;
dest->y = v1->y - v2->y;