glsl/apps: Print out the number of tokens eaten in version test.

This commit is contained in:
Michal Krol 2009-06-13 19:42:11 +02:00
parent 474f754282
commit 55f75c13f0

View file

@ -102,7 +102,10 @@ main(int argc,
return 1;
}
fprintf(out, "%u\n", version);
fprintf(out,
"%u\n%u\n",
version,
tokens_eaten);
fclose(out);