comparison src/dmzlib.c @ 2435:8d8197b3d052

Add missing linefeed.
author Matti Hamalainen <ccr@tnsp.org>
date Sun, 23 Feb 2020 08:55:30 +0200
parents 69a5af2eb1ea
children c72196d3fdbe
comparison
equal deleted inserted replaced
2434:0d86e7ff49e1 2435:8d8197b3d052
638 // a 16-bit unsigned integer stored in MSB order (CMF*256 + FLG), 638 // a 16-bit unsigned integer stored in MSB order (CMF*256 + FLG),
639 // is a multiple of 31." 639 // is a multiple of 31."
640 if ((cmf * 256 + flags) % 31 != 0) 640 if ((cmf * 256 + flags) % 31 != 0)
641 { 641 {
642 return dmErrorDBG(DMERR_INVALID_DATA, 642 return dmErrorDBG(DMERR_INVALID_DATA,
643 "Bad zlib header."); 643 "Bad zlib header.\n");
644 } 644 }
645 645
646 // We only support compression method 8 646 // We only support compression method 8
647 if (cmethod != 8) 647 if (cmethod != 8)
648 { 648 {