diff options
Diffstat (limited to 'hacks/shadebobs.c')
-rw-r--r-- | hacks/shadebobs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hacks/shadebobs.c b/hacks/shadebobs.c index d796162..8aaf6f7 100644 --- a/hacks/shadebobs.c +++ b/hacks/shadebobs.c @@ -121,7 +121,7 @@ static void InitShadeBob( struct state *st, SShadeBob *pShadeBob, Bool bDark ) double nDelta; int iWidth, iHeight; - if( ( pShadeBob->anDeltaMap = calloc( st->iBobDiameter * st->iBobDiameter, sizeof(char) ) ) == NULL ) + if( ( pShadeBob->anDeltaMap = calloc( st->iBobDiameter * st->iBobDiameter, sizeof(signed char) ) ) == NULL ) { fprintf( stderr, "%s: Could not allocate Delta Map!\n", progname ); return; |