summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xisys/isys.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.py b/isys/isys.py
index f18431d39..2887883b2 100755
--- a/isys/isys.py
+++ b/isys/isys.py
@@ -990,7 +990,7 @@ def isPaeAvailable():
start = line.split(' ')[0].split('-')[0]
start = long(start, 16)
- if start > 0x100000000L:
+ if start >= 0x100000000L:
isPAE = True
break