diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-09-16 22:54:05 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2011-10-03 09:33:55 -0700 |
commit | 5691187ced24b16a951e2b8308bcc2b65dd36eee (patch) | |
tree | f58463620ce3d96873b3bf094a9e313e2841f7f6 /test | |
parent | 6c0b44caa9b424c7e05327e8ddc9273b87a0f81f (diff) |
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 'test')
-rw-r--r-- | test/Converters.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/Converters.c b/test/Converters.c index 57b357c..46e7f5a 100644 --- a/test/Converters.c +++ b/test/Converters.c @@ -39,12 +39,12 @@ static void test_XtCvtIntToPixmap(void) XtPointer *closure_ret = NULL; int num[2]; - + XtToolkitInitialize(); num[0] = 7; num[1] = -1; - + num_args = 0; fromVal.addr = (XtPointer) num; fromVal.size = sizeof(int); @@ -59,7 +59,7 @@ static void test_XtCvtIntToPixmap(void) num[0] = -1; num[1] = 7; - + num_args = 0; fromVal.addr = (XtPointer) (&num[1]); fromVal.size = sizeof(int); |