fix incompatibility with gcc 4.9 (for the record: gcc was right)

This commit is contained in:
Wolfgang Thaller 2014-09-19 19:13:46 +02:00
parent 4b12356064
commit 2c6941895a

View File

@ -96,7 +96,7 @@ int main(int argc, char *argv[])
p != end;
++p)
{
out << "\tdc.w 0x" << *p << std::endl;
out << "\tdc.w 0x" << p->str() << std::endl;
}
}