diff options
author | jcid <devnull@localhost> | 2008-09-14 16:07:12 +0200 |
---|---|---|
committer | jcid <devnull@localhost> | 2008-09-14 16:07:12 +0200 |
commit | 8a2b5a9e5b8aad195531603aedbbdd5a9eb98bfa (patch) | |
tree | 6053a7217a9c976c0d1e78bb57c4052ba8353e53 /src/png.c | |
parent | 4272ccda16b3d6b8695f01eb3c6ea544a97cbf54 (diff) |
- Made several cleanups according to compiler warnings with "-W -Wall".
Diffstat (limited to 'src/png.c')
-rw-r--r-- | src/png.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -240,7 +240,7 @@ static void case 3: a_Dicache_write(png->Image, png->url, png->version, png->image_data + (row_num * png->rowbytes), - 0, (uint_t)row_num); + (uint_t)row_num); break; case 4: { @@ -277,7 +277,7 @@ static void } } a_Dicache_write(png->Image, png->url, png->version, - png->linebuf, 0, (uint_t)row_num); + png->linebuf, (uint_t)row_num); break; } default: |