Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
nift4 authored Jan 21, 2025
1 parent ee379e4 commit 723fa3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/org/andbootmgr/app/CreatePartFlow.kt
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class CreatePartFlow(private val desiredStartSector: Long?): WizardFlow() {
private class CreatePartDataHolder(val vm: WizardState, val desiredStartSector: Long?) {
var meta by mutableStateOf<SDUtils.SDPartitionMeta?>(null) // metaonsd only
lateinit var p: SDUtils.Partition.FreeSpace // metaonsd only
var freeSpace by mutableLongStateOf(null) // !metaonsd only
var freeSpace by mutableStateOf<Long?>(null) // !metaonsd only
var startSectorRelative = 0L // metaonsd only
var endSectorRelative = 0L // metaonsd only
var desiredSize = 0L // !metaonsd only
Expand Down

0 comments on commit 723fa3c

Please sign in to comment.