]> www.infradead.org Git - mtd-utils.git/commitdiff
mkfs.ubifs: fix compilation without ZSTD
authorMartin Kaiser <martin@kaiser.cx>
Mon, 15 Jul 2019 13:38:58 +0000 (15:38 +0200)
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>
Tue, 16 Jul 2019 05:53:33 +0000 (07:53 +0200)
Fix a trivial typo to make sure that zstd.h is included only if
zstd is not disabled.

Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
ubifs-utils/mkfs.ubifs/compr.c

index 9eade89ffcfb00d8abbf681fb69b4bccb4aa96ff..06c35cac3966ae846e3c8bf635b7cf4d08d03b90 100644 (file)
@@ -28,7 +28,7 @@
 #include <lzo/lzo1x.h>
 #endif
 #include <linux/types.h>
-#ifndef WITHOUT_ZSTSD
+#ifndef WITHOUT_ZSTD
 #include <zstd.h>
 #endif