Print notices about image files being written

This commit is contained in:
Matt Pharr
2011-08-16 06:31:26 +01:00
parent cb29c10660
commit 96af08e789
5 changed files with 5 additions and 0 deletions

View File

@@ -64,6 +64,7 @@ writePPM(int *buf, int width, int height, const char *fn) {
fputc(c, fp);
}
fclose(fp);
printf("Wrote image file %s\n", fn);
}