projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e810fe2
)
Fix a build problem introduced by r42230.
author
Hye-Shik Chang
<hyeshik@gmail.com>
Sun, 19 Feb 2006 16:22:22 +0000
(16:22 +0000)
committer
Hye-Shik Chang
<hyeshik@gmail.com>
Sun, 19 Feb 2006 16:22:22 +0000
(16:22 +0000)
Modules/posixmodule.c
patch
|
blob
|
history
diff --git
a/Modules/posixmodule.c
b/Modules/posixmodule.c
index bd5c32ad4e37df76909c9c92d6174696605f2cc3..4a482fcc21a0be29a6db056a18567682b362fefd 100644
(file)
--- a/
Modules/posixmodule.c
+++ b/
Modules/posixmodule.c
@@
-1114,7
+1114,7
@@
_pystat_fromstructstat(STRUCT_STAT *st)
unsigned long bsec,bnsec;
bsec = (long)st->st_birthtime;
#ifdef HAVE_STAT_TV_NSEC2
- bnsec = st
.st_birthtimespec->
tv_nsec;
+ bnsec = st
->st_birthtimespec.
tv_nsec;
#else
bnsec = 0;
#endif