diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2021-03-10 02:51:03 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2021-03-10 02:51:03 +0000 |
commit | 15b1d22d68c4da0904f89af2cc509f0d59f5dac7 (patch) | |
tree | 88c14f4e7a594152920359cce0b2255ead6fe28f /editor | |
parent | ed334b4ec59331592a81d43228a9f9adb09c1cae (diff) | |
download | netpbm-mirror-15b1d22d68c4da0904f89af2cc509f0d59f5dac7.tar.gz netpbm-mirror-15b1d22d68c4da0904f89af2cc509f0d59f5dac7.tar.xz netpbm-mirror-15b1d22d68c4da0904f89af2cc509f0d59f5dac7.zip |
Fix cleanup in previous commit
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4047 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor')
-rw-r--r-- | editor/specialty/ppmshift.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/specialty/ppmshift.c b/editor/specialty/ppmshift.c index 85b33f3a..27cbb78c3 100644 --- a/editor/specialty/ppmshift.c +++ b/editor/specialty/ppmshift.c @@ -93,7 +93,7 @@ shiftRow(pixel * const srcrow, pixel * pP; pixel * pP2; - unsigned int nowshift; + int nowshift; if (shift != 0) nowshift = (pm_rand(randStP) % (shift+1)) - ((shift+1) / 2); |