From dee6b67a46082be0a973eaa65efc0dc0c967cd1f 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: a24ec65acfa81b98d1ab80ae6417205a21144002 Former-commit-id: c8456eb3a9ce60f423cc9f12a21eff2a28e2b264 Former-commit-id: 193527198f426177251c251db91d5ce54b62525a --- 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; }