summaryrefslogtreecommitdiffstats
path: root/src/corelib/io
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io')
-rw-r--r--src/corelib/io/qstorageinfo_unix.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/corelib/io/qstorageinfo_unix.cpp b/src/corelib/io/qstorageinfo_unix.cpp
index d815708ab0..c58b7ce87d 100644
--- a/src/corelib/io/qstorageinfo_unix.cpp
+++ b/src/corelib/io/qstorageinfo_unix.cpp
@@ -463,8 +463,7 @@ inline bool QStorageIterator::next()
r = qstrntoll(ptr, stop - ptr, 10);
if (!r.ok())
return false;
- int parent_id = r.result;
- Q_UNUSED(parent_id);
+ // parent_id = r.result; // member currently not in use
ptr += r.used;
r = qstrntoll(ptr, stop - ptr, 10);