November 15, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=521

           Summary: frontend: incorrect error(Loc, const char*, char*)
                    declaration in mars.h
           Product: D
           Version: 0.174
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: thomas-dloop@kuehne.cn


void error(Loc loc, const char *format, ...);
void error(Loc loc, const char *format, char *);

should be:

void error(Loc loc, const char *format, ...);
void error(Loc loc, const char *format, va_list ap);


-- 

December 08, 2006
http://d.puremagic.com/issues/show_bug.cgi?id=521


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED




------- Comment #1 from bugzilla@digitalmars.com  2006-12-08 02:44 -------
Fixed DMD 0.176


--