Revert "Enlarging the token string to be 50 chars instead of 15 to accomodate"

This reverts commit b8cfe4b0bb.
This commit is contained in:
Manuel Kraemer 2012-06-13 08:29:07 -07:00
parent b8cfe4b0bb
commit 4705b6dba1

View File

@ -125,7 +125,7 @@ shape::tag * shape::tag::parseTag(char const * line) {
const char* cp = &line[2];
char name[50];
char name[15];
while (*cp == ' ') cp++;
if (sscanf(cp, "%s", &name )!=1) return t;
while (*cp && *cp != ' ') cp++;