Works for at least one test file now
[pspp] / rust / src / format.rs
index 34798ed65af54c5072f717de94381fdd74827414..9f285a9dd6710624564f90fea197b56307bad82c 100644 (file)
@@ -428,8 +428,7 @@ impl Spec {
     /// width `var_width`.
     pub fn check_width_compatibility(self, var_width: VarWidth) -> Result<Self, Error> {
         // Verify that the format is right for the variable's type.
-        self.format
-            .check_type_compatibility(var_width.into())?;
+        self.format.check_type_compatibility(var_width.into())?;
 
         if let VarWidth::String(w) = var_width {
             if var_width != self.var_width() {