summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/fs/isovfs.cpp
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2019-09-04 14:05:50 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2019-09-04 14:05:50 +0000
commit25253c9df21a9b93978237dfc1f520b0b792533f (patch)
treef01c27af155a6abfce452faf990564ca4e184afd /src/VBox/Runtime/common/fs/isovfs.cpp
parent0f07484405a8c50e341c20ae6ec3d16fef22b367 (diff)
downloadVirtualBox-svn-25253c9df21a9b93978237dfc1f520b0b792533f.tar.gz
Runtime: Some renaming to stay consistent (*Get* always returns what is asked for while *Query* returns a status code and where to store the value on success is given as a pointer)
* RTVfsFileGetSize -> RTVfsFileQuerySize * RTFileQuerySize -> RTFileQuerySizeByPath * RTFileGetSize -> RTFileQuerySize * RTFileGetSizeMaxEx -> RTFileQuerySizeMaxEx git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@80585 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'src/VBox/Runtime/common/fs/isovfs.cpp')
-rw-r--r--src/VBox/Runtime/common/fs/isovfs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/VBox/Runtime/common/fs/isovfs.cpp b/src/VBox/Runtime/common/fs/isovfs.cpp
index d48edcfb86b..594f1ea9b23 100644
--- a/src/VBox/Runtime/common/fs/isovfs.cpp
+++ b/src/VBox/Runtime/common/fs/isovfs.cpp
@@ -5617,7 +5617,7 @@ static int rtFsIsoVolTryInit(PRTFSISOVOL pThis, RTVFS hVfsSelf, RTVFSFILE hVfsBa
/*
* Get stuff that may fail.
*/
- int rc = RTVfsFileGetSize(hVfsBacking, &pThis->cbBacking);
+ int rc = RTVfsFileQuerySize(hVfsBacking, &pThis->cbBacking);
if (RT_SUCCESS(rc))
pThis->cBackingSectors = pThis->cbBacking / pThis->cbSector;
else