Skip to content

Commit

Permalink
Fix SHELL "uptime" to EXEC ["uptime"]
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Jan 1, 2012
1 parent 9eff6e7 commit 35c8150
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified src/i-nex/.gambas/FINFOSYS
Binary file not shown.
4 changes: 2 additions & 2 deletions src/i-nex/Finfosys.class
Original file line number Diff line number Diff line change
Expand Up @@ -385,11 +385,11 @@ PUBLIC SUB dospam_uptime()
TextArea45.Text = swaptotal & "MB"
TextArea45.Text = Replace(TextArea45.Text, "\n", " ")
TextLabel24.Text = usedswap / 1000
SHELL "uptime" TO uptime
EXEC ["uptime"] WAIT TO uptime
TextArea37.Text = uptime

ProgressBar1.Value = dospam / totpam
ProgressBar4.Value = usedswap / totalswap
TRY ProgressBar4.Value = usedswap / totalswap

END

Expand Down

0 comments on commit 35c8150

Please sign in to comment.