Format with rustfmt 0.99.2
diff --git a/build.rs b/build.rs
index cd91b4b..d33aadc 100644
--- a/build.rs
+++ b/build.rs
@@ -8,7 +8,7 @@
     let target = env::var("TARGET").unwrap();
 
     if !enable_use_proc_macro(&target) {
-        return
+        return;
     }
     println!("cargo:rustc-cfg=use_proc_macro");
 
@@ -40,7 +40,12 @@
 
 fn rustc_minor_version() -> Option<u32> {
     macro_rules! otry {
-        ($e:expr) => (match $e { Some(e) => e, None => return None })
+        ($e:expr) => {
+            match $e {
+                Some(e) => e,
+                None => return None,
+            }
+        };
     }
     let rustc = otry!(env::var_os("RUSTC"));
     let output = otry!(Command::new(rustc).arg("--version").output().ok());