From 44582235483a7078cd5a817a05b7441ac0b2ee5b Mon Sep 17 00:00:00 2001 From: Chengfei Zhu Date: Wed, 22 Feb 2023 13:20:23 +0800 Subject: [PATCH] QATAPP-28723: fix clang compile error fix clang compile error: qatzip_utils.c:857:2: error: no newline at end of file [-Werror,-Wnewline-eof] Change-Id: Iebf2f5151ac4e3b7283767721dbe9fe4b931335a Signed-off-by: Chengfei Zhu --- src/qatzip_lz4.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qatzip_lz4.c b/src/qatzip_lz4.c index b356430..a2fd2ce 100644 --- a/src/qatzip_lz4.c +++ b/src/qatzip_lz4.c @@ -228,4 +228,4 @@ void qzLZ4SBlockHeaderGen(unsigned char *ptr, CpaDcRqResults *res) //block header contains block size unsigned int *blk_size = (unsigned int *)(ptr); *blk_size = (unsigned int)res->produced; -} \ No newline at end of file +}