Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>2019-08-20 18:26:10 +0300
committerCorinna Vinschen <corinna@vinschen.de>2019-08-20 19:15:41 +0300
commitd0651704411d674a29a2af158388a22ef7355d53 (patch)
treeb26bd015ac2b4580ddbc720c153fd9809b91fbdc /libgloss/visium/io.h
parentf7f296b46f2607814c326ea1ed9b3294eb746034 (diff)
Fix regression in visium caused by sys/stat.h change
Diffstat (limited to 'libgloss/visium/io.h')
-rw-r--r--libgloss/visium/io.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libgloss/visium/io.h b/libgloss/visium/io.h
index a1bb879fb..9cb76ea30 100644
--- a/libgloss/visium/io.h
+++ b/libgloss/visium/io.h
@@ -57,9 +57,9 @@ struct gdb_stat {
uint64_t st_size; /* total size, in bytes */
uint64_t st_blksize; /* blocksize for filesystem I/O */
uint64_t st_blocks; /* number of blocks allocated */
- gdb_time_t st_atime; /* time of last access */
- gdb_time_t st_mtime; /* time of last modification */
- gdb_time_t st_ctime; /* time of last change */
+ gdb_time_t st_atim; /* time of last access */
+ gdb_time_t st_mtim; /* time of last modification */
+ gdb_time_t st_ctim; /* time of last change */
};
struct gdb_timeval {