Skip to content

Commit

Permalink
Open For Read
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Aug 5, 2014
1 parent 6173bc1 commit b0d3ff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions I-Nex/i-nex/.src/Disk_Drives.module
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ Public Sub disks()
Endif

If Access("/proc/mounts", gb.Read) = True Then
MOUNTS_PROC = Open "/proc/mounts"
MOUNTS_PROC = Open "/proc/mounts" For Read
For Each MountsLine In MOUNTS_PROC.Lines
For i = 0 To Split(MountsLine, " ", "%%").Count - 1
If IsNull(Finfosys.ComboBox3.Text) = False Then
Expand All @@ -332,7 +332,7 @@ Public Sub disks()
Endif

If Access("/proc/swaps", gb.Read) = True Then
SWAPS_PROC = Open "/proc/swaps"
SWAPS_PROC = Open "/proc/swaps" For Read
For Each SwapsLine In SWAPS_PROC.Lines
For i = 0 To Split(SwapsLine, " ", "%%").Count - 1
If IsNull(Finfosys.ComboBox3.Text) = False Then
Expand Down

0 comments on commit b0d3ff7

Please sign in to comment.