GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: a tiny graphical app kit for ruby
Homepage: http://code.whytheluckystiff.net/shoes
Clone URL: git://github.com/why/shoes.git
 * shoes/image.c: st_mtime is found across platforms, not st_mtim.
why (author)
Sat Oct 04 11:22:53 -0700 2008
commit  429fd7ada39dc8386322ad0903205772e9c28e24
tree    a3b14d4452b961fd16c48c44a5844153247fef4d
parent  e7f45fa36340e669a38037d8923386889a6b1aa5
...
670
671
672
673
 
674
675
676
...
670
671
672
 
673
674
675
676
0
@@ -670,7 +670,7 @@ shoes_file_mtime(char *path)
0
   int mtime = 0;
0
   struct stat *s = SHOE_ALLOC(struct stat);
0
   stat(path, s);
0
- mtime = s->st_mtim.tv_sec;
0
+ mtime = s->st_mtime;
0
   SHOE_FREE(s);
0
   return mtime;
0
 }

Comments

    No one has commented yet.