Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Tolfsen <ato@mozilla.com>2017-04-03 16:02:30 +0300
committerAndreas Tolfsen <ato@mozilla.com>2017-04-03 16:02:30 +0300
commita26cfb213a187af5c7554cb1fdfa23260cc3b2f3 (patch)
tree97701a9d21b87cef6ce952a756659143c06dcef0
parent6ec30ca4a37ca04b0bfab6faa87fbdb926710a8d (diff)
prefs: correct fixed array length
Fixes build.
-rw-r--r--src/prefs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs.rs b/src/prefs.rs
index fcbeeac..4bee6aa 100644
--- a/src/prefs.rs
+++ b/src/prefs.rs
@@ -1,7 +1,7 @@
use mozprofile::preferences::Pref;
lazy_static! {
- pub static ref DEFAULT: [(&'static str, Pref); 74] = [
+ pub static ref DEFAULT: [(&'static str, Pref); 75] = [
// Disable automatic downloading of new releases
("app.update.auto", Pref::new(false)),