[PD-cvs] SF.net SVN: pure-data: [9914] branches/pd-extended/v0-40/pd/src/m_class.c

eighthave at users.sourceforge.net eighthave at users.sourceforge.net
Sun May 25 23:53:49 CEST 2008


Revision: 9914
          http://pure-data.svn.sourceforge.net/pure-data/?rev=9914&view=rev
Author:   eighthave
Date:     2008-05-25 14:53:49 -0700 (Sun, 25 May 2008)

Log Message:
-----------
removed patch 1930733 since it seems wrong as was causing an erroneous error message: pd_vmess: only 5 allowed

Modified Paths:
--------------
    branches/pd-extended/v0-40/pd/src/m_class.c

Modified: branches/pd-extended/v0-40/pd/src/m_class.c
===================================================================
--- branches/pd-extended/v0-40/pd/src/m_class.c	2008-05-25 21:51:21 UTC (rev 9913)
+++ branches/pd-extended/v0-40/pd/src/m_class.c	2008-05-25 21:53:49 UTC (rev 9914)
@@ -810,7 +810,7 @@
     va_start(ap, fmt);
     while (1)
     {
-        if (nargs >= MAXPDARG)
+        if (nargs > MAXPDARG)
         {
             pd_error(x, "pd_vmess: only %d allowed", MAXPDARG);
             break;


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




More information about the Pd-cvs mailing list