diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2010-02-11 23:17:35 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2010-02-11 23:17:35 +0000 |
commit | f562ef2b8cfcb74938e569cf984cf3baf6ab87fd (patch) | |
tree | e06cda3bc22f000dcc5b407bedfb1cdb9dc6c4ac | |
parent | f34cf67bc094e0131c81a33eb507eace581c9a4c (diff) | |
download | bootloader-utils-f562ef2b8cfcb74938e569cf984cf3baf6ab87fd.tar bootloader-utils-f562ef2b8cfcb74938e569cf984cf3baf6ab87fd.tar.gz bootloader-utils-f562ef2b8cfcb74938e569cf984cf3baf6ab87fd.tar.bz2 bootloader-utils-f562ef2b8cfcb74938e569cf984cf3baf6ab87fd.tar.xz bootloader-utils-f562ef2b8cfcb74938e569cf984cf3baf6ab87fd.zip |
Oops use right operator
-rw-r--r-- | rebootin | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ sub select_entry { print "> "; $userinput = <STDIN>; chomp $userinput; - } while ($userinput ge $i); + } while ($userinput > $i); exit(1) unless $userinput; $entries[$userinput-1]; } |