mirror of
				https://github.com/facebook/zstd.git
				synced 2025-10-31 16:47:48 +02:00 
			
		
		
		
	fix extraneous semicolon ';'
as reported by @terrelln
This commit is contained in:
		| @@ -449,7 +449,7 @@ static size_t sizeBlockSequences(const seqDef* sp, size_t nbSeqs, | ||||
|         budget += 120 * BYTESCALE; /* generous estimate */ | ||||
|     } | ||||
|     /* first sequence => at least one sequence*/ | ||||
|     budget += sp[0].litLength * avgLitCost + avgSeqCost;; | ||||
|     budget += sp[0].litLength * avgLitCost + avgSeqCost; | ||||
|     if (budget > targetBudget) return 1; | ||||
|  | ||||
|     /* loop over sequences */ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user