Mercurial > hg
changeset 5431:a7c832abd29c
Fix build error with Sun C compiler.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Mon, 08 Oct 2007 22:45:48 -0700 |
parents | 0bdea0abe62e |
children | bfbd9b954315 0d154bce2341 |
files | mercurial/osutil.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/osutil.c Mon Oct 08 21:37:25 2007 -0300 +++ b/mercurial/osutil.c Mon Oct 08 22:45:48 2007 -0700 @@ -28,12 +28,12 @@ return PyInt_FromLong(((struct listdir_stat *)self)->st.name); \ } -listdir_slot(st_dev); -listdir_slot(st_mode); -listdir_slot(st_nlink); -listdir_slot(st_size); -listdir_slot(st_mtime); -listdir_slot(st_ctime); +listdir_slot(st_dev) +listdir_slot(st_mode) +listdir_slot(st_nlink) +listdir_slot(st_size) +listdir_slot(st_mtime) +listdir_slot(st_ctime) static struct PyGetSetDef listdir_stat_getsets[] = { {"st_dev", listdir_stat_st_dev, 0, 0, 0},