From 098bb4d41f8cd4bc88035dde84ab894cc5074532 Mon Sep 17 00:00:00 2001 From: James Jackson-South Date: Thu, 8 Oct 2015 00:01:00 +1100 Subject: [PATCH] Github not catching up... Former-commit-id: e4c5f63f2ee05cad204be9d1d9de178a34ae7954 Former-commit-id: ea96d9595843a7db90a0658ea4348c5745a60fcc Former-commit-id: 32934a4eb9572f70a8738fa8966ac7e71a7ffcc6 --- src/ImageProcessor/Formats/Gif/LzwEncoder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ImageProcessor/Formats/Gif/LzwEncoder.cs b/src/ImageProcessor/Formats/Gif/LzwEncoder.cs index 27f33389c..f68d07f8f 100644 --- a/src/ImageProcessor/Formats/Gif/LzwEncoder.cs +++ b/src/ImageProcessor/Formats/Gif/LzwEncoder.cs @@ -43,7 +43,7 @@ namespace ImageProcessor.Formats public LzwEncoder(byte[] indexedPixels, byte colorDepth) { this.indexedPixels = indexedPixels; - this.colorDepth = colorDepth.Clamp(2, 8); + this.colorDepth = colorDepth.Clamp(2, 8); this.initDataSize = this.colorDepth; }