diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-09 22:42:14 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2014-08-09 22:42:14 +0000 |
commit | 08bc531995741df21842e5bfcc6325b5bd78980d (patch) | |
tree | f2f5ab680528e15d07eafd131c4deac25689e969 /gnu/usr.bin | |
parent | de2f88e041fe5cbcea8d5fdf25cb2dde511451a7 (diff) |
Use time_t for storing times
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r-- | gnu/usr.bin/binutils/gdb/objfiles.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/usr.bin/binutils/gdb/objfiles.h b/gnu/usr.bin/binutils/gdb/objfiles.h index afbe8d26d38..69737c444e7 100644 --- a/gnu/usr.bin/binutils/gdb/objfiles.h +++ b/gnu/usr.bin/binutils/gdb/objfiles.h @@ -252,7 +252,7 @@ struct objfile /* The modification timestamp of the object file, as of the last time we read its symbols. */ - long mtime; + time_t mtime; /* Obstack to hold objects that should be freed when we load a new symbol table from this object file. */ |