commit-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[hurd] 18/36: Fix gcc warning


From: Samuel Thibault
Subject: [hurd] 18/36: Fix gcc warning
Date: Tue, 24 Sep 2013 12:31:16 +0000

This is an automated email from the git hooks/post-receive script.

sthibault pushed a commit to branch upstream
in repository hurd.

commit bad88e5d4bc1d8223d96c7225752a70c6b023768
Author: Samuel Thibault <address@hidden>
Date:   Sat Sep 21 13:47:32 2013 +0200

    Fix gcc warning
    
    * isofs/inode.c (read_disknode): Cast dr->date into char* before calling
    `isodate_915`.
---
 isofs/inode.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/isofs/inode.c b/isofs/inode.c
index d848908..f9d4c41 100644
--- a/isofs/inode.c
+++ b/isofs/inode.c
@@ -430,7 +430,7 @@ read_disknode (struct node *np, struct dirrect *dr,
          != (TF_CREATION|TF_ACCESS|TF_MODIFY)))
     {
       struct timespec ts;
-      isodate_915 (dr->date, &ts);
+      isodate_915 ((char *) dr->date, &ts);
       st->st_ctim = st->st_mtim = st->st_atim = ts;
     }
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-hurd/hurd.git



reply via email to

[Prev in Thread] Current Thread [Next in Thread]