fixed Visual warnings
diff --git a/lib/zstd_decompress.c b/lib/zstd_decompress.c
index 96ba893..6061c87 100644
--- a/lib/zstd_decompress.c
+++ b/lib/zstd_decompress.c
@@ -812,8 +812,7 @@
         }
 
         /* check if reached exact end */
-        if (nbSeq)
-            return ERROR(corruption_detected);   /* DStream should be entirely and exactly consumed; otherwise data is corrupted */
+        if (nbSeq) return ERROR(corruption_detected);
     }
 
     /* last literal segment */