aboutsummaryrefslogtreecommitdiff
path: root/gprofng/src/DbeFile.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gprofng/src/DbeFile.cc')
-rw-r--r--gprofng/src/DbeFile.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gprofng/src/DbeFile.cc b/gprofng/src/DbeFile.cc
index 9f08b3c..bae5888 100644
--- a/gprofng/src/DbeFile.cc
+++ b/gprofng/src/DbeFile.cc
@@ -512,7 +512,7 @@ DbeFile::find_in_classpath (char *filename, Vector<DbeFile*> *classPath)
}
}
-struct stat64 *
+dbe_stat_t *
DbeFile::get_stat ()
{
if (sbuf.st_atim.tv_sec == 0)
@@ -529,8 +529,8 @@ DbeFile::compare (DbeFile *df)
{
if (df == NULL)
return false;
- struct stat64 *st1 = get_stat ();
- struct stat64 *st2 = df->get_stat ();
+ dbe_stat_t *st1 = get_stat ();
+ dbe_stat_t *st2 = df->get_stat ();
if (st1 == NULL || st2 == NULL)
return false;
if (st1->st_size != st2->st_size)