From c00eab69f32e789e056a13f3223da7dfb5d4a60b Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Thu, 11 Nov 2004 09:40:45 +0000 Subject: [PATCH] Remove trailing blanks. --- lib/allocsa.h | 4 ++-- lib/euidaccess.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/allocsa.h b/lib/allocsa.h index b5fdac56f6..5ae49e5074 100644 --- a/lib/allocsa.h +++ b/lib/allocsa.h @@ -94,14 +94,14 @@ enum #ifdef HAVE_LONG_LONG sa_alignment_longlong = sa_alignof (long long), #endif -#ifdef HAVE_LONG_DOUBLE +#ifdef HAVE_LONG_DOUBLE sa_alignment_longdouble = sa_alignof (long double), #endif sa_alignment_max = ((sa_alignment_long - 1) | (sa_alignment_double - 1) #ifdef HAVE_LONG_LONG | (sa_alignment_longlong - 1) #endif -#ifdef HAVE_LONG_DOUBLE +#ifdef HAVE_LONG_DOUBLE | (sa_alignment_longdouble - 1) #endif ) + 1, diff --git a/lib/euidaccess.c b/lib/euidaccess.c index d63566c60e..978ab560a3 100644 --- a/lib/euidaccess.c +++ b/lib/euidaccess.c @@ -122,7 +122,7 @@ euidaccess (const char *path, int mode) { int result; int saved_errno; - + if (uid != euid) setreuid (euid, uid); if (gid != egid) @@ -130,7 +130,7 @@ euidaccess (const char *path, int mode) result = access (path, mode); saved_errno = errno; - + /* Restore them. */ if (uid != euid) setreuid (uid, euid); -- 2.30.2