From 7002a93882bd9ac4c87dcef42e4286063d2801a3 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Tue, 22 Dec 2015 16:42:06 -0700 Subject: [PATCH] More build script modernization --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 41647b4b..a72b72e3 100644 --- a/build.rs +++ b/build.rs @@ -7,7 +7,7 @@ use std::path::Path; use std::convert::AsRef; // From http://www.postgresql.org/docs/9.2/static/errcodes-appendix.html -static SQLSTATES: &'static [(&'static str, &'static str)] = &[ +const SQLSTATES: &'static [(&'static str, &'static str)] = &[ // Class 00 — Successful Completion ("00000", "SuccessfulCompletion"),