Skip to content

Commit

Permalink
Remove For Read
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Aug 5, 2014
1 parent 679e164 commit 4ff37d6
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 @@ -310,7 +310,7 @@ Public Sub disks()
Endif

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

If Access("/proc/swaps", gb.Read) = True Then
SWAPS_PROC = Open "/proc/swaps" For Read
SWAPS_PROC = Open "/proc/swaps"
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 4ff37d6

Please sign in to comment.