summaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-16 22:48:53 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-09-16 22:48:53 -0700
commit3ea70059805b3ebc795f797b5880b90b6b3a9235 (patch)
tree580e215d33f103506e983e4b67739c587d8f8c5a /src/parse.c
parent0c9e200c3975917f5d78eac67b1f4cedefd73079 (diff)
downloadxorg-lib-libXpm-3ea70059805b3ebc795f797b5880b90b6b3a9235.tar.gz
Strip trailing whitespace
Performed with: find * -type f | xargs perl -i -p -e 's{[ \t]+$}{}' git diff -w & git diff -b show no diffs from this change Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c
index 5c7915f..7dc2aa7 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -380,7 +380,7 @@ ParsePixels(
unsigned int a, x, y;
if ((height > 0 && width >= UINT_MAX / height) ||
- width * height >= UINT_MAX / sizeof(unsigned int))
+ width * height >= UINT_MAX / sizeof(unsigned int))
return XpmNoMemory;
#ifndef FOR_MSW
iptr2 = (unsigned int *) XpmMalloc(sizeof(unsigned int) * width * height);