Remove trailing blanks.
authorJim Meyering <jim@meyering.net>
Thu, 11 Nov 2004 09:40:45 +0000 (09:40 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 11 Nov 2004 09:40:45 +0000 (09:40 +0000)
lib/allocsa.h
lib/euidaccess.c

index b5fdac56f6a16501921972450ee771ab3718ac98..5ae49e50745b9b18173f89f8aceea8a8324913d3 100644 (file)
@@ -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,
index d63566c60e6f333136b465e9991387402ac4d4a4..978ab560a33d899fe915035e0e56b74bd49ed459 100644 (file)
@@ -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);