diff options
author | Brian Paul <[email protected]> | 2002-07-12 15:54:01 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-07-12 15:54:01 +0000 |
commit | f02a5f6cc55fc61229a038ac72edb3ce97cb6950 (patch) | |
tree | b3f3b47105dd5939751262bd880dc7821b435679 /progs/samples/loadppm.c | |
parent | 902d2faadf37a5627ab2cbcd8993825c8749ec82 (diff) |
Pedantic compiler fixes (Sven Panne)
Diffstat (limited to 'progs/samples/loadppm.c')
-rw-r--r-- | progs/samples/loadppm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/progs/samples/loadppm.c b/progs/samples/loadppm.c index bf7c8dd1e89..5d3e3ab56f1 100644 --- a/progs/samples/loadppm.c +++ b/progs/samples/loadppm.c @@ -30,7 +30,7 @@ static PPMImage *LoadPPM(const char *filename) exit(1); } - result = malloc(sizeof(PPMImage)); + result = (PPMImage *) malloc(sizeof(PPMImage)); if (!result) { fprintf(stderr, "Unable to allocate memory\n"); @@ -52,7 +52,7 @@ static PPMImage *LoadPPM(const char *filename) while (fgetc(fp) != '\n') ; - result->data = malloc(3 * result->sizeX * result->sizeY); + result->data = (GLubyte *) malloc(3 * result->sizeX * result->sizeY); if (!result) { fprintf(stderr, "Unable to allocate memory\n"); |