Revision: 55576
          http://sourceforge.net/p/brlcad/code/55576
Author:   n_reed
Date:     2013-05-29 14:10:19 +0000 (Wed, 29 May 2013)
Log Message:
-----------
fix two macros that referenced a non-existent 's' parameter

Modified Paths:
--------------
    brlcad/trunk/include/vmath.h

Modified: brlcad/trunk/include/vmath.h
===================================================================
--- brlcad/trunk/include/vmath.h        2013-05-28 23:24:36 UTC (rev 55575)
+++ brlcad/trunk/include/vmath.h        2013-05-29 14:10:19 UTC (rev 55576)
@@ -1021,7 +1021,7 @@
                        (o)[Z] = ((a)[Z] + (b)[Z]) * (s); \
     } while (0)
 
-#define VADD2SCALEN(o, a, b, n) do { \
+#define VADD2SCALEN(o, a, b, s, n) do { \
        register int _vadd2scale; \
        for (_vadd2scale = 0; \
        _vadd2scale < (n); \
@@ -1040,7 +1040,7 @@
                        (o)[Z] = ((a)[Z] - (b)[Z]) * (s); \
     } while (0)
 
-#define VSUB2SCALEN(o, a, b, n) do { \
+#define VSUB2SCALEN(o, a, b, s, n) do { \
        register int _vsub2scale; \
        for (_vsub2scale = 0; \
        _vsub2scale < (n); \

This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.


------------------------------------------------------------------------------
Introducing AppDynamics Lite, a free troubleshooting tool for Java/.NET
Get 100% visibility into your production application - at no cost.
Code-level diagnostics for performance bottlenecks with <2% overhead
Download for free and get started troubleshooting in minutes.
http://p.sf.net/sfu/appdyn_d2d_ap1
_______________________________________________
BRL-CAD Source Commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/brlcad-commits

Reply via email to