mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-30 10:55:37 -04:00
[partition] Warnings--, explain why we're using a void*
This commit is contained in:
parent
9910b23152
commit
eb8e95bb87
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ convenienceName( const Partition* const candidate )
|
||||||
|
|
||||||
QString p;
|
QString p;
|
||||||
QTextStream s( &p );
|
QTextStream s( &p );
|
||||||
s << (void*)candidate;
|
s << (void*)(candidate); // No good name available, use pointer address
|
||||||
|
|
||||||
return p;
|
return p;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue