* lib/utimens.c: On Tru64, the timestamp parameter of utimens(2)
is not declared as a const *; avoid warnings in that case.
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Signed-off-by: Eric Blake <eblake@redhat.com>
+2010-04-27  Andreas Gruenbacher  <agruen@suse.de>  (tiny change)
+
+       * lib/utimens.c: On Tru64, the timestamp parameter of utimens(2)
+       is not declared as a const *; avoid warnings in that case.
+
 2010-04-28  Eric Blake  <eblake@redhat.com>
 
        canonicalize-lgpl: avoid compiler warning
 
   {
 #if HAVE_FUTIMESAT || HAVE_WORKING_UTIMES
     struct timeval timeval[2];
-    struct timeval const *t;
+    struct timeval *t;
     if (ts)
       {
         timeval[0].tv_sec = ts[0].tv_sec;
 #if HAVE_LUTIMES && !HAVE_UTIMENSAT
   {
     struct timeval timeval[2];
-    struct timeval const *t;
+    struct timeval *t;
     int result;
     if (ts)
       {