summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2013-02-03 18:46:35 -0800
committerJay Freeman (saurik) <saurik@saurik.com>2013-02-03 18:47:12 -0800
commit8d6b6bf4a17335e653be11ec2da25014441e2adc (patch)
tree552445694c1a0d153145938ff77abce1091cd86e
parentd10105f296d3c2c185e122fa3566cd033dff55f3 (diff)
Use correct >= to verify a range's lower-bound.
-rw-r--r--MobileSafety.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/MobileSafety.mm b/MobileSafety.mm
index 4a373d8..a3e8960 100644
--- a/MobileSafety.mm
+++ b/MobileSafety.mm
@@ -96,7 +96,7 @@ void SafeModeAlertItem$alertSheet$buttonClicked$(id self, SEL sel, id sheet, int
break;
case 2:
- if (kCFCoreFoundationVersionNumber > 700)
+ if (kCFCoreFoundationVersionNumber >= 700)
system("killall backboardd");
else
// XXX: there are better ways of restarting SpringBoard that would actually save state